BaseFormPaintMdiClientArea Event

Note: This API is now obsolete.
Occurs when MDI area of the form has to be repainted. IsMdiContainer must be true to access this event.

Definition

Namespace: KGySoft.WinForms.Forms
Assembly: KGySoft.WinForms (in KGySoft.WinForms.dll) Version: 5.0.1
C#
[ObsoleteAttribute("Use the Paint event of the MdiClient property instead.")]
[BrowsableAttribute(false)]
public event PaintEventHandler PaintMdiClientArea

Value

PaintEventHandler

Remarks

  Caution

This event is now obsolete. Its sender is not this form but the MdiClient instance, whose Paint event is subscribed when you subscribe this event. It is cleaner to use the new MdiClient property instead.

See Also