You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Chris, i was able to tweak your component to receive a List as ItemsSource and it works nice for my needs.
I have a question for you:
void UpdateSelectedIndex ()
{
// WHAT IS THIS LINE FOR?
if (SelectedItem == BindingContext) return;
SelectedIndex = Children
.Select (c => c.BindingContext)
.ToList ()
.IndexOf (SelectedItem);
}
The text was updated successfully, but these errors were encountered:
Chris, i was able to tweak your component to receive a List as ItemsSource and it works nice for my needs.
I have a question for you:
The text was updated successfully, but these errors were encountered: