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
MAUI added both HorizontalStackLayout and VerticalStackLayout controls. When I place a CheckBox in a VerticalStackLayout, the CheckChanged event does not fire when the checkbox is checked or unchecked. If I change the stack back to a StackLayout (with orientation of Vertical), it fires as expected.
MAUI added both HorizontalStackLayout and VerticalStackLayout controls. When I place a CheckBox in a VerticalStackLayout, the CheckChanged event does not fire when the checkbox is checked or unchecked. If I change the stack back to a StackLayout (with orientation of Vertical), it fires as expected.
My XAML is something similar to:
<VerticalStackLayout Grid.Column="1" Grid.Row="0" HorizontalOptions="Fill" Padding="5,0,0,0"> <input:CheckBox Text="Owned" Type="Material" BoxSizeRequest="30" IsVisible="{Binding IsNotGuest}" IsChecked="{Binding IsOwned}" IsEnabled="{Binding GatherComplete}" CheckChanged="Tapped_Owned"/> <input:CheckBox Text="Wanted" Type="Material" BoxSizeRequest="30" IsVisible="{Binding IsNotGuest}" IsChecked="{Binding IsWanted}" IsEnabled="{Binding GatherComplete}" CheckChanged="Tapped_Wanted"/> <input:CheckBox Text="For Trade" Type="Material" BoxSizeRequest="30" IsVisible="{Binding IsNotGuest}" IsChecked="{Binding IsForTrade}" IsEnabled="{Binding GatherComplete}" CheckChanged="Tapped_ForTrade"/> </VerticalStackLayout>
The text was updated successfully, but these errors were encountered: