62 lines
2.8 KiB
Plaintext
62 lines
2.8 KiB
Plaintext
|
|
<wpf:FluentWindow
|
||
|
|
Height="450"
|
||
|
|
Title="FluentWindowDemo"
|
||
|
|
Width="800"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
x:Class="WPFluent.Gallery.Views.Windows.FluentWindowDemo"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
|
xmlns:local="clr-namespace:WPFluent.Gallery.Views.Windows"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
xmlns:wpf="https://github.com/ShrlAlgo/WPFluent"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||
|
|
<Grid>
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="Auto" />
|
||
|
|
<RowDefinition Height="*" />
|
||
|
|
<RowDefinition Height="Auto" />
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<StatusBar
|
||
|
|
Grid.Row="2"
|
||
|
|
Margin="0"
|
||
|
|
MinHeight="0"
|
||
|
|
Padding="8,2"
|
||
|
|
x:Name="RootStatusBar">
|
||
|
|
<StatusBar.ItemsPanel>
|
||
|
|
<ItemsPanelTemplate>
|
||
|
|
<Grid>
|
||
|
|
<Grid.ColumnDefinitions>
|
||
|
|
<ColumnDefinition Width="Auto" />
|
||
|
|
<ColumnDefinition Width="Auto" />
|
||
|
|
<ColumnDefinition Width="Auto" />
|
||
|
|
<ColumnDefinition Width="Auto" />
|
||
|
|
<ColumnDefinition Width="Auto" />
|
||
|
|
<ColumnDefinition Width="*" />
|
||
|
|
<ColumnDefinition Width="Auto" />
|
||
|
|
</Grid.ColumnDefinitions>
|
||
|
|
</Grid>
|
||
|
|
</ItemsPanelTemplate>
|
||
|
|
</StatusBar.ItemsPanel>
|
||
|
|
<StatusBarItem>
|
||
|
|
<wpf:SymbolIcon Foreground="{DynamicResource TextFillColorSecondaryBrush}" Symbol="BranchFork24" />
|
||
|
|
</StatusBarItem>
|
||
|
|
<StatusBarItem Grid.Column="1" Margin="0,0,4,0">
|
||
|
|
<TextBlock Foreground="{DynamicResource TextFillColorSecondaryBrush}" Text="Development *" />
|
||
|
|
</StatusBarItem>
|
||
|
|
<StatusBarItem Grid.Column="2" Margin="4,0,4,0">
|
||
|
|
<wpf:SymbolIcon Foreground="{DynamicResource TextFillColorSecondaryBrush}" Symbol="Home24" />
|
||
|
|
</StatusBarItem>
|
||
|
|
<StatusBarItem Grid.Column="3" Margin="4,0,4,0">
|
||
|
|
<wpf:SymbolIcon Foreground="{DynamicResource TextFillColorSecondaryBrush}" Symbol="Fire24" />
|
||
|
|
</StatusBarItem>
|
||
|
|
<StatusBarItem Grid.Column="4" Margin="4,0,4,0">
|
||
|
|
<TextBlock Foreground="{DynamicResource TextFillColorSecondaryBrush}" Text="WPFluent.sln" />
|
||
|
|
</StatusBarItem>
|
||
|
|
<StatusBarItem Grid.Column="6">
|
||
|
|
<TextBlock Foreground="{DynamicResource TextFillColorSecondaryBrush}" Text="Ln 45, Col 30 Spaces: 2 UTF8 with BOM C#" />
|
||
|
|
</StatusBarItem>
|
||
|
|
</StatusBar>
|
||
|
|
</Grid>
|
||
|
|
|
||
|
|
</wpf:FluentWindow>
|