Inheritance: System.EventArgs
コード例 #1
0
ファイル: Action.cs プロジェクト: SuperMap/iClient-for-Win8
 private void OnDrawComplete(DrawEventArgs args)
 {
     if (DrawCompleted != null)
     {
         DrawCompleted(this, args);
     }
 }
コード例 #2
0
ファイル: Action.cs プロジェクト: SuperMap/iClient-for-Win8
 public override void Tap(GestureEventArgs e)
 {
     Point2D point = _map.ScreenToMap(e.GetPosition(_map));
     DrawEventArgs args = new DrawEventArgs
     {
         Geometry =new GeoPoint(point.X,point.Y)
     };
     OnDrawComplete(args);
     base.Tap(e);
 }