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.
28 lines
1.8 KiB
28 lines
1.8 KiB
<windows:BaseWindow x:Class="Kingo.Plugin.EngineEditor.Views.FrmSetTargetLayer" |
|
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:btn="clr-namespace:KUI.Button;assembly=KUI" |
|
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" |
|
mc:Ignorable="d" |
|
Height="90" Width="320" Top="186" Left="367"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition /> |
|
<!--<RowDefinition />--> |
|
</Grid.RowDefinitions> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="220"/> |
|
<ColumnDefinition /> |
|
</Grid.ColumnDefinitions> |
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Margin="10,0"> |
|
<Label Content="图层:" Margin="0,0,0,0" VerticalContentAlignment="Center" /> |
|
<dxe:ComboBoxEdit Name="wndLayerListImageComboBox" VerticalContentAlignment="Center" Height="30" Width="145" Margin="0,10" MouseMove="wndLayerListImageComboBox_MouseMove" /> |
|
</StackPanel> |
|
<StackPanel Grid.Column="2" Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="5,10"> |
|
<btn:KImgButton Content="开 始" Width="80" Height="30" x:Name="rollerShutterBtn" Click="rollerShutterBtn_Click" FIconMargin="0"/> |
|
</StackPanel> |
|
</Grid> |
|
</windows:BaseWindow>
|
|
|