Example #1
0
 public CabsPage(SystemPage page, Building b)
 {
     InitializeComponent();
     this.systemPage = page;
     _building       = b;
     this.cabs       = b.Cabs;
     init();
 }
Example #2
0
 public void marker_Click(object sender, MouseButtonEventArgs e)
 {
     Console.WriteLine("点击了一下marker");
     if (e.LeftButton == MouseButtonState.Released)
     {
         Dictionary <string, Building> globalMapForBuiding = GlobalMapForShow.globalMapForBuiding;
         PositionMarker       marker = (PositionMarker)sender;
         System.Windows.Point p      = e.GetPosition(MainMap);
         mainWindow.setClickPoint(MainMap.FromLocalToLatLng((int)p.X, (int)p.Y));
         mainWindow.setCurrentMarker(marker.getGmapMarker());
         Building   b    = marker.building;
         SystemPage page = new SystemPage(mainWindow, b);
         mainWindow.getMainPage().Content = page;
     }
 }
Example #3
0
 public CabsPage(SystemPage sp)
 {
     InitializeComponent();
     systemPage = sp;
     init();
 }