コード例 #1
0
 /// <summary>
 /// Initializes a new instance of <c>FillerEditorDialog</c> using an empty <c>Filler</c>
 /// and positioned beneath the specified control.
 /// </summary>
 /// <param name="c">Control beneath which the dialog should be placed.</param>
 public FormEditorsDialog(Control c) : this(FormInput.Empty(), c)
 {
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of <c>FillerEditorDialog</c> using an existing <c>Filler</c>
 /// and positioned beneath the specified control.
 /// </summary>
 /// <param name="formInput">The form input.</param>
 /// <param name="c">Control beneath which the dialog should be placed.</param>
 /// <exception cref="System.ArgumentNullException">Thrown if <paramref name="filler" /> is null.</exception>
 public FormEditorsDialog(FormInput formInput, Control c) : this(formInput)
 {
     Zeroit.Framework.FormThemes.UIThemes.ThematicForms.FormEditors.Utilities.Draw.SetStartPositionBelowControl(this, c);
 }
コード例 #3
0
 /// <summary>
 /// Initializes a new instance of <c>FillerEditorDialog</c> using an empty <c>Filler</c>
 /// at the default window position.
 /// </summary>
 public FormEditorsDialog() : this(FormInput.Empty())
 {
 }