You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1.2 KiB
22 lines
1.2 KiB
<ad:DocumentContent x:Class="SiaSun.LMS.WPFClient.SYS.MENU_EDIT"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:ad="clr-namespace:AvalonDock;assembly=AvalonDock"
|
|
xmlns:uc="clr-namespace:SiaSun.LMS.WPFClient.UC"
|
|
Title="MENU_EDIT" Height="300" Width="600" Loaded="DocumentContent_Loaded">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"></ColumnDefinition>
|
|
<ColumnDefinition Width="Auto"></ColumnDefinition>
|
|
<ColumnDefinition Width="*"></ColumnDefinition>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<uc:ucTreeView x:Name="tvwMenu" Grid.Column="0"></uc:ucTreeView>
|
|
<GridSplitter Grid.Column="1" Grid.RowSpan="2" VerticalAlignment="Stretch" FlowDirection="LeftToRight"></GridSplitter>
|
|
<GroupBox Name="grpBoxMenu" Grid.Column="2" Tag=" {0}-菜单信息" Header="菜单信息">
|
|
<Grid>
|
|
<uc:ucCommonDataGrid Grid.Row="0" x:Name="gridMenu" Margin="1" U_AllowPage="False"></uc:ucCommonDataGrid>
|
|
</Grid>
|
|
</GroupBox>
|
|
</Grid>
|
|
</ad:DocumentContent>
|