We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the OnSelectedItemChanged event, should the SelectedIndex be set to -1 when SelectedItem == null?
private static void OnSelectedItemChanged(BindableObject bindable, object oldValue, object newValue) { BindablePicker picker = (BindablePicker)bindable; picker.SelectedItem = newValue; if (picker.ItemsSource != null && picker.SelectedItem != null) { int count = 0; foreach (object obj in picker.ItemsSource) { if (obj == picker.SelectedItem) { picker.SelectedIndex = count; break; } count++; } } }
For instance: else picker.SelectedIndex = -1;
Thank you for your consideration.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the OnSelectedItemChanged event, should the SelectedIndex be set to -1 when SelectedItem == null?
private static void OnSelectedItemChanged(BindableObject bindable, object oldValue, object newValue)
{
BindablePicker picker = (BindablePicker)bindable;
picker.SelectedItem = newValue;
if (picker.ItemsSource != null && picker.SelectedItem != null)
{
int count = 0;
foreach (object obj in picker.ItemsSource)
{
if (obj == picker.SelectedItem)
{
picker.SelectedIndex = count;
break;
}
count++;
}
}
}
For instance:
else picker.SelectedIndex = -1;
Thank you for your consideration.
The text was updated successfully, but these errors were encountered: