1234567891011121314151617181920212223 |
- <wpf:ThemableWindow x:Class="PRSDesktop.Forms.MapForm"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:wpf="clr-namespace:InABox.Wpf;assembly=InABox.Wpf"
- mc:Ignorable="d"
- Title="MapForm" WindowStyle="None" WindowStartupLocation="CenterScreen" SizeToContent="WidthAndHeight" MaxHeight="1000" MaxWidth="1000">
- <Grid>
- <Label x:Name="TimeStamp" Panel.ZIndex="1000" VerticalAlignment="Top" HorizontalAlignment="Center"
- FontSize="24" />
- <Image x:Name="staticmap" Margin="0,0,0,0" MouseUp="staticmap_MouseUp" />
- <StackPanel VerticalAlignment="Bottom" HorizontalAlignment="Right" Margin="0,0,10,10" Orientation="Horizontal" >
- <Button x:Name="ZoomIn" Height="40" Width="40" Click="ZoomIn_OnClick">
- <Image Source="../Resources/zoomin.png" />
- </Button>
- <Button x:Name="ZoomOut" Height="40" Width="40" Margin="5,0,0,0" Click="ZoomOut_OnClick">
- <Image Source="../Resources/zoomout.png" />
- </Button>
- </StackPanel>
-
- </Grid>
- </wpf:ThemableWindow>
|