mirror of
https://github.com/LorisYounger/VPet.git
synced 2024-08-30 18:42:36 +00:00
40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<pu:WindowX
|
|
x:Class="VPet.Solution.Views.MainWindow"
|
|
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:ll="clr-namespace:LinePutScript.Localization.WPF;assembly=LinePutScript.Localization.WPF"
|
|
xmlns:local="clr-namespace:VPet.Solution"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:pu="https://opensource.panuon.com/wpf-ui"
|
|
xmlns:system="clr-namespace:System;assembly=mscorlib"
|
|
xmlns:vm="clr-namespace:VPet.Solution.ViewModels"
|
|
Title="{ll:Str 'VPET 问题解决工具'}"
|
|
Width="800"
|
|
Height="450"
|
|
MinWidth="400"
|
|
MinHeight="200"
|
|
d:DataContext="{d:DesignInstance Type=vm:MainWindowVM}"
|
|
WindowStartupLocation="CenterScreen"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Button
|
|
x:Name="Button_OpenSettingEditor"
|
|
Click="Button_OpenSettingEditor_Click"
|
|
Content="{ll:Str 打开设置编辑器}"
|
|
FontSize="16"
|
|
Style="{DynamicResource Button_BaseStyle}" />
|
|
<Button
|
|
x:Name="Button_OpenSaveEditor"
|
|
Grid.Column="1"
|
|
Click="Button_OpenSaveEditor_Click"
|
|
Content="{ll:Str 打开存档查看器}"
|
|
FontSize="16"
|
|
Style="{DynamicResource Button_BaseStyle}" />
|
|
</Grid>
|
|
</pu:WindowX>
|