Hi,
I've a scenario when I need to disable SfListView scrolling and change it's TranslationY coordinates. Problem is that when TranslationY changes it shows blank space at the bottom of the list, is there a way to fix this?
I've attached video to better demonstrate what is happening. Once calendar is visible I'm disabling scrolling in listview and then with pan gesture I move calendar and listview up as if closing. All working fine except the blank space.
Is there other way of doing this? Thanks in advance.
HI Lakshmi,
Thank you. Is there any other way to stop ListView from scrolling while I perform pan gesture, perhaps keeping scroll Y coordinates locked somehow?
|
private void ToolbarItem_Clicked(object sender, EventArgs e)
{
calendar.IsVisible = true;
parentScrollView.InputTransparent = true;
} |