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.
47 lines
3.9 KiB
47 lines
3.9 KiB
<UserControl x:Class="Kingo.Plugin.AttributeMaintain.View.FrmCZC_TR" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" |
|
xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid" |
|
xmlns:dxlc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol" |
|
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:kui="clr-namespace:KUI;assembly=KUI" |
|
mc:Ignorable="d" |
|
d:DesignHeight="350" d:DesignWidth="1058"> |
|
<Grid> |
|
<dxlc:LayoutControl Orientation="Vertical" Margin="0,0,10,0"> |
|
<dxlc:LayoutGroup Orientation="Horizontal"> |
|
<dxlc:LayoutItem IsRequired="True" Label="" dxlc:LayoutControl.AllowHorizontalSizing="True" VerticalAlignment="Stretch" LabelPosition="Top"> |
|
<StackPanel Background="White"> |
|
<DockPanel Height="35" Width="800" HorizontalAlignment="Left"> |
|
<Label Content="城镇村范围(调入):" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" /> |
|
<TextBox x:Name="btnczcPath" IsReadOnly="True" Width="450" Height="25" /> |
|
<btn:KImgButton x:Name="btnSelectedCZCPath" Content="选择" Click="btnSelectedCZCPath_Click" Height="25" Margin="10,0" Width="170" /> |
|
</DockPanel> |
|
<dxg:GridControl AutoPopulateColumns="False" Name="dgInto" AutoGenerateColumns="AddNew" AutoGeneratedColumns="DgInto_AutoGeneratedColumns" CustomColumnGroup="DgInto_CustomColumnGroup" MaxHeight="300" Height="290"> |
|
<dxg:GridControl.View> |
|
<dxg:TableView Name="tvAttr2" ShowTotalSummary="False" ShowFilterPanelMode="Never" AllowPerPixelScrolling="False" ShowFixRowButton="Never" ShowFixedTotalSummary="False" |
|
ShowSearchPanelMode="Never" AllowGrouping="True" MultiSelectMode="None" AllowBestFit="False" ShowGroupPanel="False" ShowAutoFilterRow="True" RowDoubleClick="TvAttr2_RowDoubleClick" AllowFilterEditor="False" /> |
|
</dxg:GridControl.View> |
|
</dxg:GridControl> |
|
</StackPanel> |
|
</dxlc:LayoutItem> |
|
<dxlc:LayoutItem Background="White" IsRequired="True" VerticalAlignment="Stretch" MaxWidth="230" LabelPosition="Top"> |
|
<StackPanel> |
|
<StackPanel Orientation="Horizontal" Margin="0,5"> |
|
<dxe:TextEdit x:Name="SArea" NullText="碎片图斑容限(默认50)" Width="150" MaxWidth="150" Height="25"/> |
|
<btn:KImgButton x:Name="btnRefreshData" Content="刷新" Click="BtnRefreshData_Click" Margin="5,0" /> |
|
</StackPanel> |
|
<dxlc:LayoutItem IsRequired="True" Margin="5,10" Label="" LabelPosition="Left" LabelHorizontalAlignment="Right" Width="220" Height="27"> |
|
<btn:KImgButton x:Name="btnsplitdltbbg" Content="拆分变更图斑" Click="btnsplitdltbbg_Click" Height="25" Margin="10,0" Width="170" /> |
|
</dxlc:LayoutItem> |
|
<TextBlock Text="注:行政区调入时被村庄用地范围拆分,需提取更新层更新过程层数据,记录为图形变更." TextWrapping="Wrap" Width="200" Foreground="Red" Height="225" FontSize="18" Margin="15,0"></TextBlock> |
|
</StackPanel> |
|
</dxlc:LayoutItem> |
|
</dxlc:LayoutGroup> |
|
</dxlc:LayoutControl> |
|
<kui:LoadingControl x:Name="loading" Visibility="Collapsed" /> |
|
</Grid> |
|
</UserControl> |