コード例 #1
0
ファイル: Scribble.cs プロジェクト: zhujingcheng/Webviewer
 protected virtual void OnStroke(NumericEventArgs args)
 {
     if (this.Stroke != null)
     {
         this.Stroke(this, args);
     }
 }
コード例 #2
0
ファイル: Scribble.cs プロジェクト: zhujingcheng/Webviewer
 protected virtual void OnInkAdded(NumericEventArgs args)
 {
     if (this.InkAdded != null)
     {
         this.InkAdded(this, args);
     }
 }