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.
31 lines
1.9 KiB
31 lines
1.9 KiB
<windows:BaseWindow xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" x:Class="Kingo.Plugin.EngineEditor.Views.FrmSetTargetLayer" |
|
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:local="clr-namespace:Kingo.Plugin.EngineEditor.Views" |
|
xmlns:btn="clr-namespace:KUI.Button;assembly=KUI" |
|
mc:Ignorable="d" |
|
Height="90" Width="300" 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" /> |
|
<ComboBox Name="wndLayerListImageComboBox" VerticalContentAlignment="Center" Width="145" Margin="0,10" MouseMove="wndLayerListImageComboBox_MouseMove" /> |
|
</StackPanel> |
|
<StackPanel Grid.Column="2" Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="-20,10"> |
|
<btn:KImgButton Content="开始" Width="50" Height="30" x:Name="rollerShutterBtn" Click="rollerShutterBtn_Click" FIconMargin="0"/> |
|
<!--<Button x:Name="rollerShutterBtn" Height="25" Width="25" Click="rollerShutterBtn_Click" Background="Transparent" Foreground="Transparent"> |
|
</Button> |
|
<Image Source="pack://siteoforigin:,,,/Resources/维护数据字典.png"/>--> |
|
</StackPanel> |
|
</Grid> |
|
</windows:BaseWindow>
|
|
|