9 references to SelectedIndex
Microsoft.Maui.Controls (9)
Picker\Picker.cs (9)
35
/// <summary>Bindable property for <see cref="
SelectedIndex
"/>.</summary>
37
BindableProperty.Create(nameof(
SelectedIndex
), typeof(int), typeof(Picker), -1, BindingMode.TwoWay,
314
if (insertIndex <=
SelectedIndex
)
315
UpdateSelectedItem(
SelectedIndex
);
339
if (removeStart <=
SelectedIndex
)
360
picker.UpdateSelectedItem(picker.
SelectedIndex
);
372
var oldIndex =
SelectedIndex
;
373
var newIndex =
SelectedIndex
.Clamp(-1, Items.Count - 1);
439
get =>
SelectedIndex
;