Created
November 3, 2022 10:12
-
-
Save jesusdesantos/9e12ca4b306373f8fd58ec0c82fed3db to your computer and use it in GitHub Desktop.
Right-To-Left ToolBar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | |
<ToolBar FlowDirection="RightToLeft" Height="50" DockPanel.Dock="Top"> | |
<ToolBar.Background> | |
<LinearGradientBrush StartPoint="0,0.5" EndPoint="1,1"> | |
<LinearGradientBrush.GradientStops> | |
<GradientStop Color="DarkRed" Offset="0" /> | |
<GradientStop Color="DarkBlue" Offset="0.3" /> | |
<GradientStop Color="LightBlue" Offset="0.6" /> | |
<GradientStop Color="White" Offset="1" /> | |
</LinearGradientBrush.GradientStops> | |
</LinearGradientBrush> | |
</ToolBar.Background> | |
<Button FontSize="12" Foreground="White" Margin="10">Button1</Button> | |
<Button FontSize="12" Foreground="White" Margin="10">Button2</Button> | |
<Button FontSize="12" Foreground="White" Margin="10">Button3</Button> | |
<Button FontSize="12" Foreground="White" Margin="10">Button4</Button> | |
</ToolBar> | |
</Page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment