Example #1
0
 private void PrintObject1_MouseUp(object sender, MouseEventArgs e)
 {
     if (e.Button == MouseButtons.Right)
     {
         select.ShowMenu(con.PointToScreen(new Point(e.X, e.Y)));
     }
     if (e.Button == MouseButtons.Left)
     {
         if (this.sizebk != con.Size || this.locationbk != con.Location)
         {
             select.Record();
         }
     }
 }