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.
|
|
|
|
<windows:BaseWindow x:Class="Kingo.Plugin.General.View.UCShowImage"
|
|
|
|
|
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"
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
d:DesignHeight="450" d:DesignWidth="800" ResizeMode="CanResize"
|
|
|
|
|
PreviewMouseLeftButtonDown="BaseWindow_PreviewMouseLeftButtonDown" PreviewMouseMove="BaseWindow_PreviewMouseMove" PreviewMouseLeftButtonUp="BaseWindow_PreviewMouseLeftButtonUp">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="30" />
|
|
|
|
|
<ColumnDefinition />
|
|
|
|
|
<ColumnDefinition Width="30" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Button Content="<" Grid.Row="0" Grid.Column="0" Name="Prev" Click="Prev_Click" ></Button>
|
|
|
|
|
<Button Content=">" Grid.Row="1" Grid.Column="2" Name="Next" Click="Next_Click" ></Button>
|
|
|
|
|
<Image x:Name="imgInfo" HorizontalAlignment="Center" Margin="10" VerticalAlignment="Center" ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto" Stretch="Fill" Grid.Column="1" Grid.RowSpan="3" Grid.Row="0">
|
|
|
|
|
</Image>
|
|
|
|
|
</Grid>
|
|
|
|
|
</windows:BaseWindow>
|