diff --git a/Testing/WPF-GMapControlNew/MainWindow.xaml.cs b/Testing/WPF-GMapControlNew/MainWindow.xaml.cs new file mode 100644 --- /dev/null +++ b/Testing/WPF-GMapControlNew/MainWindow.xaml.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Collections.ObjectModel; +using GMap.NET.WindowsPresentation; + +namespace WpfApplication1 +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + + { + GMapMarker m = new GMapMarker(); + { + var b = new Button(); + b.Click += new RoutedEventHandler(b_Click); + b.Width = 55; + b.Content = "test"; + + m.Shape = b; + } + MainMap.Markers.Add(m); + } + + MainMap.MinZoom = 1; + MainMap.MaxZoom = 4; + MainMap.Zoom = 2; + } + + void b_Click(object sender, RoutedEventArgs e) + { + MessageBox.Show("click"); + } + } +}