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.
42 lines
2.0 KiB
42 lines
2.0 KiB
<ad:DocumentContent x:Class="SSWMS.Client.RelationEdit"
|
|
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:SSWMS.Client.UC"
|
|
Title="RelationEdit">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<GroupBox Grid.Row="0" Header="角色信息">
|
|
<uc:ucCommonDataGrid x:Name="dgRoles"></uc:ucCommonDataGrid>
|
|
</GroupBox>
|
|
<GridSplitter Grid.Row="1" Height="2" HorizontalAlignment="Stretch"></GridSplitter>
|
|
<Grid Grid.Row="2">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"></ColumnDefinition>
|
|
<ColumnDefinition Width="Auto"></ColumnDefinition>
|
|
<ColumnDefinition Width="*"></ColumnDefinition>
|
|
</Grid.ColumnDefinitions>
|
|
<GroupBox Grid.Column="0" Name="gbUnSelected">
|
|
<ListBox Name="lbUnSelected" SelectionMode="Multiple"></ListBox>
|
|
</GroupBox>
|
|
<StackPanel Grid.Column="1" VerticalAlignment="Center">
|
|
<Button Content="全部 >>" Height="25" Margin="5" Click="bAllSelected_Click"></Button>
|
|
<Button Content=">>" Height="25" Margin="5" Click="bSelected_Click"></Button>
|
|
<Button Content="<<" Height="25" Margin="5" Click="bUnSelected_Click"></Button>
|
|
<Button Content="全部 <<" Height="25" Margin="5" Click="bAllUnSelected_Click"></Button>
|
|
</StackPanel>
|
|
<GroupBox Grid.Column="2" Name="gbSelected">
|
|
<ListBox Name="lbSelected" SelectionMode="Multiple"></ListBox>
|
|
</GroupBox>
|
|
</Grid>
|
|
<WrapPanel Grid.Row="3" HorizontalAlignment="Center">
|
|
<Button Content="保 存" Width="70" Click="bSave_Click"></Button>
|
|
<Button Content="重 置" Width="70" Click="bRefresh_Click"></Button>
|
|
</WrapPanel>
|
|
</Grid>
|
|
</ad:DocumentContent>
|