年度变更建库软件5.0版本
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.
 
 

29 lines
2.2 KiB

<windows:BaseWindow xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
xmlns:dxlc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol"
x:Class="Kingo.Plugin.General.ViewDTBResultCheck.FrmRuleSetting"
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:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils"
xmlns:kui="clr-namespace:KUI;assembly=KUI"
mc:Ignorable="d" Title="规则库更新设置"
Height="150" Width="500" ResizeMode="NoResize">
<Grid Margin="5">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<dxlc:LayoutItem Grid.Row="0" Label="当前版本号:" LabelHorizontalAlignment="Right" VerticalAlignment="Center">
<Label Name="labVersion" Margin="6,0,0,0"></Label>
</dxlc:LayoutItem>
<dxlc:LayoutItem Grid.Row="1" Label="文件地址:" LabelHorizontalAlignment="Right" VerticalAlignment="Center">
<dxe:ButtonEdit Name="txtRulePath" Height="25" IsTextEditable="False" AllowNullInput="False" ValidateOnEnterKeyPressed="True" AllowDefaultButton="True" DefaultButtonClick="BtntxtRulePath_Click" NullText="请选择规则库文件地址" ShowNullText="True" InvalidValueBehavior="AllowLeaveEditor" Margin="18,0,0,0" />
</dxlc:LayoutItem>
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Center">
<kui:KFontIconButton FIcon="" x:Name="btnSave" Grid.Column="0" Content="更 新" HorizontalAlignment="Left" Height="25" Width="70" Click="BtnSave_Click"/>
<kui:KFontIconButton FIcon="" x:Name="btnCancel" Grid.Column="0" Content="取 消" HorizontalAlignment="Left" Height="25" Width="70" Click="BtnCancel_Click" Margin="20,0,0,0"/>
</StackPanel>
</Grid>
</windows:BaseWindow>