예제 #1
0
 private void control_Resize(object sender, EventArgs e)
 {
     Elipse.Apply(this.control, this.size);
     if (this.eventHandler != null)
     {
         this.eventHandler(sender, e);
     }
 }
예제 #2
0
 public void ApplyElipse()
 {
     try
     {
         if (this.control != null)
         {
             Elipse.Apply(this.control, this.size);
         }
     }
     catch (Exception)
     {
         MessageBox.Show("Lỗi sủ lý FormEclipse");
     }
 }