CeramicProjectTool/MainWindow.xaml

24 lines
1.1 KiB
XML

<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"
Title="MainWindow" Height="450" Width="800" Loaded="Window_Loaded">
<Grid>
<DockPanel>
<ToolBar DockPanel.Dock="Top" Height="30">
<Button x:Name="ModelConfigButton" Content="模块配置" Click="ModelConfigButton_Click"/>
<Separator/>
<Button x:Name="PermissionButton" Content="权限配置" Click="PermissionConfigButton_Click"/>
<Separator/>
</ToolBar>
<Frame DockPanel.Dock="Bottom"
x:Name="MainFrame"
NavigationUIVisibility="Hidden"
/>
</DockPanel>
</Grid>
</Window>