i_know_things
i_know_things
CC#
Created by i_know_things on 12/25/2022 in #help
❔ MAUI Flyout menu on Right side instead of default left
Shell flyout by default shows on the right side of the page title. Is there any way to change it to the right side
3 replies
CC#
Created by i_know_things on 9/28/2022 in #help
Assigning all StackPanel child element margin
I am trying to set the margin for all elements in stackpanel from resor. Can you point out why it's not working here?
XAML
<StackPanel.Resources>
<Style x:Name="marginSetter"
TargetType="{x:Type FrameworkElement}">
<Setter Property="Margin"
Value="{StaticResource tbMargin}" />
</Style>
</StackPanel.Resources>
XAML
<StackPanel.Resources>
<Style x:Name="marginSetter"
TargetType="{x:Type FrameworkElement}">
<Setter Property="Margin"
Value="{StaticResource tbMargin}" />
</Style>
</StackPanel.Resources>
4 replies