// Gtk.Window.custom - Gtk Window class customizations // // Author: Mike Kestner // // (c) 2001 Mike Kestner // // This code is inserted after the automatically generated code. /// /// Window Constructor /// /// /// /// Constructs a new Window of type TopLevel with the /// specified Title. /// public Window (String title) : this (WindowType.Toplevel) { this.Title = title; } /// /// DefaultSize Property /// /// /// /// The default Size of the Window in Screen Coordinates. /// public System.Drawing.Size DefaultSize { get { return new System.Drawing.Size ( DefaultWidth, DefaultHeight); } set { DefaultWidth = value.Width; DefaultHeight = value.Height; } }