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.
51 lines
3.4 KiB
51 lines
3.4 KiB
<windows:BaseWindow x:Class="Kingo.Plugin.BGSetting.Views.UCOpenSystemSet" |
|
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:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" |
|
xmlns:local="clr-namespace:Kingo.Plugin.SystemSetting.View.ViewSystemSetting" |
|
xmlns:btn="clr-namespace:KUI.Button;assembly=KUI" |
|
mc:Ignorable="d" ResizeMode="CanResize" Loaded="BaseWindow_Loaded" |
|
Width="850" Height="520" WindowStartupLocation="CenterScreen" Title="系统设置" |
|
d:DesignHeight="550" d:DesignWidth="870"> |
|
<Grid Background="White"> |
|
<Grid.RowDefinitions> |
|
<RowDefinition /> |
|
<RowDefinition Height="50" /> |
|
</Grid.RowDefinitions> |
|
<TabControl TabStripPlacement="Left" Name="tabControl"> |
|
<TabItem Header="数据加载" Height="35" Name="SJJZ"> |
|
<local:ViewBGSetting x:Name="ViewBGSetting" DataContext="{Binding SystemCfg.JcLayerLoadCfg}" Background="White" /> |
|
</TabItem> |
|
<TabItem Header="外业信息" Height="35" VerticalAlignment="Top" Name="WYXX"> |
|
<local:ViewWYInfoSetting x:Name="ViewWYInfoSetting" Background="White" DataContext="{Binding SystemCfg.WYZPSetCfg}" /> |
|
</TabItem> |
|
<TabItem Header="图层字段配置" Height="35" Name="TCZDPZ"> |
|
<local:ViewLayterAttributeSetting x:Name="ViewLayterAttributeSetting" DataContext="{Binding SystemCfg.JcLayerLoadCfg}" Background="White"/> |
|
</TabItem> |
|
<!--<TabItem Header="变更图斑检查规则" Height="35" Name="BGTBJC"> |
|
<local:ViewBGRuleSetting x:Name="ViewBGRuleSetting" Background="White"/> |
|
</TabItem> |
|
<TabItem Header="增量图斑检查规则" Height="35" Name="ZLTBJC"> |
|
<local:ViewZLRuleSetting x:Name="ViewZLRuleSetting" Background="White"/> |
|
</TabItem> |
|
<TabItem Header="单图斑质检规则" Height="35" Name="DTBZJSet"> |
|
<local:ViewRuleSetting x:Name="viewRuleSetting" Background="White"/> |
|
</TabItem>--> |
|
<TabItem Header="图层配置" Height="35"> |
|
<local:ViewLayerCfgSetting x:Name="ViewLayerCfgSetting" DataContext="{Binding SystemCfg}" Background="White"/> |
|
</TabItem> |
|
<TabItem Header="授权管理" Height="35"> |
|
<local:ViewAuthoriza x:Name="ViewAuthoriza" Background="White"/> |
|
</TabItem> |
|
</TabControl> |
|
<Grid Grid.Row="1" Background="#FFF0F0F0"> |
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center"> |
|
<btn:KImgButton x:Name="btnOK" Content="确 定" Width="80" Height="30" Margin="5,0" Foreground="White" Click="btnOK_Click" /> |
|
<btn:KImgButton x:Name="btnSave" Content="保 存" Width="80" Height="30" Margin="5,0" Foreground="White" Click="btnSave_Click" /> |
|
<btn:KImgButton x:Name="btnCancel" Content="关 闭" Width="80" Height="30" Margin="5,0" Foreground="White" Click="btnCancel_Click" /> |
|
</StackPanel> |
|
</Grid> |
|
</Grid> |
|
</windows:BaseWindow>
|
|
|