2024-05-20 12:28:55 +08:00
|
|
|
<Window x:Class="CeramicProjectTool.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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
xmlns:local="clr-namespace:CeramicProjectTool"
|
|
|
|
mc:Ignorable="d"
|
2024-05-21 11:47:05 +08:00
|
|
|
Title="MainWindow" Height="500" Width="800" MinHeight="500" MinWidth="800" Loaded="Window_Loaded">
|
2024-05-20 12:28:55 +08:00
|
|
|
<Grid>
|
|
|
|
<DockPanel>
|
|
|
|
<ToolBar DockPanel.Dock="Top" Height="30">
|
|
|
|
<Button x:Name="ModelConfigButton" Content="模块配置" Click="ModelConfigButton_Click"/>
|
|
|
|
<Separator/>
|
2024-05-21 11:47:05 +08:00
|
|
|
<Button x:Name="PermissionButton" Content="权限列表" Click="PermissionConfigButton_Click"/>
|
2024-05-20 12:28:55 +08:00
|
|
|
<Separator/>
|
|
|
|
</ToolBar>
|
|
|
|
<Frame DockPanel.Dock="Bottom"
|
|
|
|
x:Name="MainFrame"
|
|
|
|
NavigationUIVisibility="Hidden"
|
|
|
|
/>
|
|
|
|
</DockPanel>
|
|
|
|
</Grid>
|
|
|
|
</Window>
|