XAML-Map-Control/SampleApps/SurfaceApplication/MainWindow.xaml

14 lines
625 B
Plaintext
Raw Normal View History

2012-07-04 17:19:48 +02:00
<s:SurfaceWindow x:Class="SurfaceApplication.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="http://schemas.microsoft.com/surface/2008"
xmlns:m="clr-namespace:MapControl;assembly=MapControl.WPF"
Title="SurfaceApplication" WindowStyle="None" WindowState="Maximized">
2012-07-04 17:19:48 +02:00
<Grid>
<m:Map Center="53.5,8.2" ZoomLevel="11"
2012-07-04 17:19:48 +02:00
IsManipulationEnabled="True" TouchDown="MapTouchDown">
<m:MapGraticule Opacity="0.5" MinLineSpacing="200"/>
</m:Map>
</Grid>
</s:SurfaceWindow>