Ejemplo n.º 1
0
 public SkinFormControlBoxRenderEventArgs(SkinForm form, Graphics graphics, Rectangle clipRect, bool active, ControlBoxStyle controlBoxStyle, ControlBoxState controlBoxState) : base(graphics, clipRect)
 {
     this._form            = form;
     this._active          = active;
     this._controlBoxState = controlBoxState;
     this._controlBoxStyle = controlBoxStyle;
 }
Ejemplo n.º 2
0
 public SkinFormControlBoxRenderEventArgs(Forms.FormBase form, Graphics graphics, Rectangle clipRect, bool active, ControlBoxStyle controlBoxStyle, ControlBoxState controlBoxState, CmSysButton cmSysbutton = null)
     : base(graphics, clipRect)
 {
     this._form            = form;
     this._active          = active;
     this._controlBoxState = controlBoxState;
     this._controlBoxStyle = controlBoxStyle;
     this._CmSysbutton     = cmSysbutton;
 }
Ejemplo n.º 3
0
 public FormControlBoxRenderEventArgs(
     SkinForm form,
     Graphics graphics,
     Rectangle clipRect,
     bool isActive,
     ControlBoxStyle controlBoxStyle,
     ControlState controlBoxState)
     : base(graphics, clipRect)
 {
     _form            = form;
     _isActive        = isActive;
     _controlBoxState = controlBoxState;
     _controlBoxStyle = controlBoxStyle;
 }
 public SkinFormControlBoxRenderEventArgs(
     SkinForm form,
     Graphics graphics,
     Rectangle clipRect,
     bool active,
     ControlBoxStyle controlBoxStyle,
     ControlBoxState controlBoxState)
     : base(graphics, clipRect)
 {
     _form = form;
     _active = active;
     _controlBoxState = controlBoxState;
     _controlBoxStyle = controlBoxStyle;
 }
Ejemplo n.º 5
0
 public SkinFormControlBoxRenderEventArgs(
     CCSkinMain form,
     Graphics graphics,
     Rectangle clipRect,
     bool active,
     ControlBoxStyle controlBoxStyle,
     ControlBoxState controlBoxState,
     CmSysButton cmSysbutton = null)
     : base(graphics, clipRect)
 {
     _form            = form;
     _active          = active;
     _controlBoxState = controlBoxState;
     _controlBoxStyle = controlBoxStyle;
     _CmSysbutton     = cmSysbutton;
 }