Beispiel #1
0
 /// <summary>
 /// Call method OnUserDraw() and event UserDraw
 /// </summary>
 protected void CallUserDraw(GUserDrawArgs e)
 {
     this.OnUserDraw(e);
     if (!this.IsSuppressedEvent && this.UserDraw != null)
     {
         this.UserDraw(this, e);
     }
 }
Beispiel #2
0
 /// <summary>
 /// Occured after change value in this.Visual*Bounds
 /// </summary>
 protected virtual void OnUserDraw(GUserDrawArgs e)
 {
 }