/// <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 FillerEditorDialog(Control c) : this(Filler.Empty(), c)
 {
 }
 /// <summary>
 /// Initializes a new instance of <c>FillerEditorDialog</c> using an empty <c>Filler</c>
 /// at the default window position.
 /// </summary>
 public FillerEditorDialog() : this(Filler.Empty())
 {
 }