30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<Page
|
|
x:Class="Wpf.Ui.Demo.SetResources.Simple.Views.Pages.DashboardPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
|
|
Title="DashboardPage"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
ui:Design.Background="{DynamicResource ApplicationBackgroundBrush}"
|
|
ui:Design.Foreground="{DynamicResource TextFillColorPrimaryBrush}"
|
|
Foreground="{DynamicResource TextFillColorPrimaryBrush}"
|
|
mc:Ignorable="d"
|
|
>
|
|
<Grid Margin="42" VerticalAlignment="Top">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
<ui:Button
|
|
Grid.Column="0"
|
|
Click="OnBaseButtonClick"
|
|
Content="Click me!"
|
|
Icon="{ui:SymbolIcon Fluent24}"
|
|
/>
|
|
<TextBlock x:Name="CounterTextBlock" Grid.Column="1" Margin="12,0,0,0" VerticalAlignment="Center" />
|
|
</Grid>
|
|
</Page>
|