Issue with SelectedValueChanged Event in PickerField #709
rosaly9108
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm encountering an issue with the SelectedValueChanged event in a PickerField control in my MAUI application. Despite specifying SelectedValueChanged in the XAML and attempting to handle it in the corresponding event handler method, the application does not trigger the event when a selection is made in the PickerField.
<material:PickerField
x:Name="PickerType"
ItemsSource="{Binding ColumnTypes}"
SelectedItem="{Binding SelectedColumnType}"
SelectedValueChanged="OnPickerValueChanged" />
private void OnPickerValueChanged(object sender, EventArgs e)
{
Debug.WriteLine("Picker value changed!");
}
Beta Was this translation helpful? Give feedback.
All reactions