Skip to content

Instantly share code, notes, and snippets.

@jesusdesantos
Created November 3, 2022 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jesusdesantos/9e12ca4b306373f8fd58ec0c82fed3db to your computer and use it in GitHub Desktop.
Save jesusdesantos/9e12ca4b306373f8fd58ec0c82fed3db to your computer and use it in GitHub Desktop.
Right-To-Left ToolBar
<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