|
|
|
|
<windows:BaseWindow xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils"
|
|
|
|
|
x:Class="Kingo.Plugin.DTBJK_XJ.View.UCMapImageSetting"
|
|
|
|
|
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:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
|
|
|
|
|
xmlns:btn="clr-namespace:KUI.Button;assembly=KUI"
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
Height="150" Width="550" Title="加载影像">
|
|
|
|
|
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition />
|
|
|
|
|
<RowDefinition />
|
|
|
|
|
<RowDefinition />
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="160"/>
|
|
|
|
|
<ColumnDefinition/>
|
|
|
|
|
<ColumnDefinition Width="160"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="3" Margin="10,0">
|
|
|
|
|
<Label Content="影像路径:" Height="30" Margin="20,0,0,0" VerticalAlignment="Center" VerticalContentAlignment="Center"/>
|
|
|
|
|
<dxe:TextEdit Text="" x:Name="txtUrl" Width="400" Height="30" Margin="0,0" VerticalAlignment="Center" VerticalContentAlignment="Center" HorizontalContentAlignment="Left"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="3" Margin="10,0">
|
|
|
|
|
<Label Content="示 例 :" Height="30" Margin="20,0,0,0" VerticalAlignment="Center" VerticalContentAlignment="Center"/>
|
|
|
|
|
<Label Content=" http://127.0.0.1:8889/kmapserver/arcgis/wmts" Height="30" Margin="0,0" VerticalAlignment="Center" VerticalContentAlignment="Center" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<btn:KImgButton Content="确定" Width="90" Height="30" x:Name="btnOK" Click="btnOK_Click" Grid.Row="2" Grid.Column="1" HorizontalAlignment="Left"/>
|
|
|
|
|
<btn:KImgButton Content="取消" Width="90" Height="30" x:Name="btnCancel" Click="btnCancel_Click" Grid.Row="2" Grid.Column="1" HorizontalAlignment="Right"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</windows:BaseWindow>
|