DuraSoft
.NET-63
Form Class
•Representation of any window in the application
•You can create an object of this, set it to be modal, create as a dialog, create and attach MDI windows
public class Form : ContainerControl {
public static Form ActiveForm {get; }
public IButtonControl AcceptButton {get; set; }
…
public Cursor Cursor {get; set; }
public bool MaximizeBox {get; set; }
…
public void Activate();
public void Close();
public void Refresh();
…
}