Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <b>DialogPage</b> class.
 /// </summary>
 public DialogPage()
 {
     FControls             = new DialogComponentCollection(this);
     FForm                 = new Form();
     FForm.ShowIcon        = false;
     FForm.ShowInTaskbar   = false;
     FForm.FormBorderStyle = FormBorderStyle.FixedDialog;
     FForm.MinimizeBox     = false;
     FForm.MaximizeBox     = false;
     FForm.Font            = DrawUtils.DefaultFont;
     BaseName              = "Form";
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <b>ParentControl</b> class with default settings.
 /// </summary>
 public ParentControl()
 {
     FControls = new DialogComponentCollection(this);
 }