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.
30 lines
1.9 KiB
30 lines
1.9 KiB
<UserControl x:Class="Kingo.Plugin.ProofManager.View.UCProofInfo_Item" |
|
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" |
|
xmlns:local="clr-namespace:Kingo.Plugin.ProofManager.View" |
|
mc:Ignorable="d" |
|
d:DesignHeight="140" d:DesignWidth="400"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="35"/> |
|
<RowDefinition Height="35"/> |
|
<RowDefinition Height="35"/> |
|
<RowDefinition Height="35"/> |
|
</Grid.RowDefinitions> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="100"/> |
|
<ColumnDefinition Width="*"/> |
|
</Grid.ColumnDefinitions> |
|
<Label VerticalAlignment="Center" Content=" 变更地类:" HorizontalContentAlignment="Right" Grid.Column="0"/> |
|
<TextBox Grid.Column="1" IsReadOnly="True" Height="25" Grid.Row="0" Margin="8,0" x:Name="BGTB"/> |
|
<Label VerticalAlignment="Center" Content=" 变更范围:" HorizontalContentAlignment="Right" Grid.Row="1" Grid.Column="0"/> |
|
<TextBox Grid.Column="1" IsReadOnly="True" Height="25" Grid.Row="1" Margin="8,0" x:Name="BGFW"/> |
|
<Label VerticalAlignment="Center" Content=" 未变更类型:" HorizontalContentAlignment="Right" Grid.Row="2" Grid.Column="0"/> |
|
<TextBox Grid.Column="1" IsReadOnly="True" Height="25" Grid.Row="2" Margin="8,0" x:Name="WBGLX"/> |
|
<Label VerticalAlignment="Center" Content=" 备注:" HorizontalContentAlignment="Right" Grid.Row="3" Grid.Column="0"/> |
|
<TextBox Grid.Column="1" IsReadOnly="True" Height="25" Grid.Row="3" Margin="8,0" x:Name="BZ"/> |
|
|
|
</Grid> |
|
</UserControl>
|
|
|