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.9 KiB
42 lines
2.9 KiB
<UserControl x:Class="Kingo.Plugin.SystemSetting.View.ViewSystemSetting.ViewAuthoriza" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|
xmlns:btn="clr-namespace:KUI.Button;assembly=KUI" |
|
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" |
|
mc:Ignorable="d" |
|
d:DesignHeight="450" d:DesignWidth="800"> |
|
<Grid Background="White"> |
|
<GroupBox Header="授权管理" HorizontalAlignment="Stretch" Margin="8" VerticalAlignment="Stretch"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition/> |
|
<RowDefinition/> |
|
<RowDefinition/> |
|
<RowDefinition/> |
|
<RowDefinition/> |
|
</Grid.RowDefinitions> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="120"/> |
|
<ColumnDefinition Width="350"/> |
|
</Grid.ColumnDefinitions> |
|
<TextBlock Grid.Column="0" Grid.Row="0" Text="行政区名称及代码:" HorizontalAlignment="Right" VerticalAlignment="Center" ></TextBlock> |
|
<dxe:TextEdit Grid.Column="1" Grid.Row="0" x:Name="txtXZQ" TextWrapping="WrapWithOverflow" Height="50" Margin="4" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" IsReadOnly="True" /> |
|
<TextBlock Grid.Column="0" Grid.Row="1" Text="授权截止时间:" HorizontalAlignment="Right" VerticalAlignment="Center"></TextBlock> |
|
<dxe:TextEdit Grid.Column="1" Grid.Row="1" x:Name="txtJZSJ" Height="30" Margin="4" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" IsReadOnly="True" /> |
|
<TextBlock Grid.Column="0" Grid.Row="2" Text="授权范围:" HorizontalAlignment="Right" VerticalAlignment="Center" ></TextBlock> |
|
<StackPanel Grid.Column="1" Grid.Row="2" VerticalAlignment="Center"> |
|
<Grid> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition/> |
|
<ColumnDefinition/> |
|
</Grid.ColumnDefinitions> |
|
<btn:KImgButton x:Name="DispalySQ" Grid.Column="0" Content="显示授权" Width="100" Height="30" CornerRadius="3" Margin="5,0" Foreground="White" Click="DispalySQ_Click" /> |
|
<btn:KImgButton x:Name="DispalyGH" Grid.Column="1" Content="更换授权" Width="100" Height="30" CornerRadius="3" Margin="5,0" Foreground="White" Click="DispalyGH_Click" /> |
|
</Grid> |
|
</StackPanel> |
|
</Grid> |
|
</GroupBox> |
|
</Grid> |
|
</UserControl>
|
|
|