Example #1
0
 public MyButton(string text, Station parent, Rectangle rect, Bitmap image, Rectangle region = default(Rectangle))
     : base(text, parent, rect, image, region)
 {
 }
Example #2
0
 public MyPicture(string text, Station parent, Rectangle rect, Bitmap image, Rectangle region=default(Rectangle)):base(text,image,rect,ImagePasteMode.Overwrite,region)
 {
     PARENT = parent;
 }
Example #3
0
 public MyButton(string text, Station parent, Rectangle rect, object backcolor = null,Rectangle region=default(Rectangle)):this(text,parent,rect,Get_BUTTON_IMAGE(rect.Size, text, backcolor),region)
 {
 }