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.
41 lines
2.4 KiB
41 lines
2.4 KiB
<UserControl |
|
x:Class="Kingo.Plugin.YJJK.View.ViewSXWH" |
|
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:kui="clr-namespace:KUI;assembly=KUI" |
|
mc:Ignorable="d" |
|
d:DesignHeight="300" d:DesignWidth="800" Loaded="FrmAttribute_Loaded"> |
|
<Grid Background="White"> |
|
<GroupBox Header="属性维护" Margin="8"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="230"/> |
|
<RowDefinition Height="30" /> |
|
</Grid.RowDefinitions> |
|
<kui:PagingDataGrid x:Name="AttributeItemsSourse" Padding="0" Margin="8,0" AutoGenerateColumns="False" CanUserAddRows="False" CanUserDeleteRows="False" CanUserReorderColumns="False"> |
|
<kui:PagingDataGrid.Columns> |
|
<DataGridTemplateColumn Width="*"> |
|
<DataGridTemplateColumn.HeaderTemplate> |
|
<DataTemplate> |
|
<CheckBox Content="全 选" Checked="CheckAll_Checked" Unchecked="CheckAll_Checked" /> |
|
</DataTemplate> |
|
</DataGridTemplateColumn.HeaderTemplate> |
|
<DataGridTemplateColumn.CellTemplate> |
|
<DataTemplate> |
|
<StackPanel Orientation="Horizontal" VerticalAlignment="Center"> |
|
<CheckBox Content="{Binding Descriction}" Margin="8,0" IsChecked="{Binding IsChecked,Mode=TwoWay,UpdateSourceTrigger=LostFocus}" /> |
|
</StackPanel> |
|
</DataTemplate> |
|
</DataGridTemplateColumn.CellTemplate> |
|
</DataGridTemplateColumn> |
|
</kui:PagingDataGrid.Columns> |
|
</kui:PagingDataGrid> |
|
<StackPanel Orientation="Horizontal" Grid.Row="1"> |
|
<TextBlock Text="注:对增量层果的标识码、要素代码、椭球面积、扣除地类系数与扣除地类面积、项目属性赋值进行批量维护" TextWrapping="Wrap" Foreground="Red" ></TextBlock> |
|
</StackPanel> |
|
</Grid> |
|
</GroupBox> |
|
</Grid> |
|
</UserControl>
|
|
|