Exemplo n.º 1
0
 public MaximizeFormButton(CommonForm owner) :
     base(owner)
 {
     this.Image      = Properties.Resources.max;
     this.ImageHover = Properties.Resources.max_hover;
     this.ImagePress = Properties.Resources.max_press;
 }
Exemplo n.º 2
0
 public CloseFormButton(CommonForm owner) :
     base(owner)
 {
     this.Image      = Properties.Resources.close;
     this.ImageHover = Properties.Resources.close_hover;
     this.ImagePress = Properties.Resources.close_press;
 }
Exemplo n.º 3
0
 public FormButton(CommonForm owner)
 {
     this.Owner = owner;
 }