mirror of
https://github.com/sp-tarkov/assembly-tool.git
synced 2025-02-13 09:50:44 -05:00
37 lines
1.4 KiB
XML
37 lines
1.4 KiB
XML
<Page
|
|
x:Class="ReCodeItGUI_WPF.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:local="clr-namespace:ReCodeItGUI_WPF.Views.Pages"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
|
|
Title="DashboardPage"
|
|
d:DataContext="{d:DesignInstance local:DashboardPage,
|
|
IsDesignTimeCreatable=False}"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
ui:Design.Background="{DynamicResource ApplicationBackgroundBrush}"
|
|
ui:Design.Foreground="{DynamicResource TextFillColorPrimaryBrush}"
|
|
Foreground="{DynamicResource TextFillColorPrimaryBrush}"
|
|
mc:Ignorable="d">
|
|
|
|
<Grid VerticalAlignment="Top">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<ui:Button
|
|
Grid.Column="0"
|
|
Command="{Binding ViewModel.CounterIncrementCommand, Mode=OneWay}"
|
|
Content="Click me!"
|
|
Icon="Fluent24" />
|
|
<TextBlock
|
|
Grid.Column="1"
|
|
Margin="12,0,0,0"
|
|
VerticalAlignment="Center"
|
|
Text="{Binding ViewModel.Counter, Mode=OneWay}" />
|
|
</Grid>
|
|
</Page>
|