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.
40 lines
2.7 KiB
40 lines
2.7 KiB
<UserControl x:Class="Kingo.Plugin.SystemSetting.View.ViewSystemSetting.ViewAuthoriza" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|
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> |
|
<TextBox 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> |
|
<TextBox 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> |
|
<Button x:Name="DispalySQ" Grid.Column="0" HorizontalAlignment="Left" Margin="20" Height="45" Width="100" Click="DispalySQ_Click" Content="显示授权范围"/> |
|
<Button x:Name="DispalyGH" Grid.Column="1" HorizontalAlignment="Right" Margin="20" Height="45" Width="100" Click="DispalyGH_Click" Content="更换授权范围"/> |
|
</Grid> |
|
</StackPanel> |
|
</Grid> |
|
</GroupBox> |
|
</Grid> |
|
</UserControl>
|
|
|