Hello,
With latest Xamarin.Froms and SfComboBox version I experience the following issue on Android (only on Android, on UWP not, IOS not tested):
I have an SfComboBox on my layout in the middle. So there is enough space below the combobox to show more drop down items. I create a list of 3 strings and add as DataSource. If I do not touch the list in my code any more (like it would be constant) then I see all 3 items in the drop down list when I press the combobox:
//myCombobox defined in xaml:
<combobox:SfComboBox x:Name="myCombobox">
//Code behind:
List<string> myStrings = new List<string>(){"string1", "string2", "string3"};
myCombobox.DataSource = myStrings; //myCombobox defined in xaml
But If I create the List, then add a fourth element to it, then set the DataSource, then only one row is visible in the drop down windows. I can scroll the items in it, but the drop down window only one item (row) high - this makes it very uncomfortable to use.
List<string> myStrings = new List<string>(){"string1", "string2", "string3"};
myStrings.Add("string4");
myCombobox.DataSource = myStrings; //myCombobox defined in xaml
Can you reproduce this behaviour, or am I doing something wrong?
Regards,
Balázs