gtk-sharp 0.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Base class for containers that have two children separated by an adjustable pane. This class provides methods for manipulating a panel with 2 child widgets, separated by a splitter. The concrete widgets that extend from this class are for a vertical splitter, and for a horizontal splitter. A paned widget draws a separator between the two child widgets that the user can drag to adjust the division. Each child widget has two options that can be set, and , (set with the and methods). If resize is , then when the Paned is resized, the respective child will expand or shrink along with the paned widget. If shrink is , then the respective child can be made smaller than it's requisition by the user. Setting shrink to allows the application to set a minimum size. If resize is for both children, then this exhibits exactly the same behaviour as if resize is for both children. The application can set the position of the slider as if it were set by the user with the property. public Widget GetExampleFrame() { HPaned splitter = new HPaned(); Frame frame1 = new Frame("Example frame1"); Frame frame2 = new Frame("Example frame2"); splitter.Pack1(frame1, true, false); splitter.Pack2(frame2, false, false); splitter.ShowAll(); return splitter; } Gtk.Container Atk.Implementor GLib.IWrapper GLib.IWrapper System.IDisposable Method System.Void Packs a child widget into the second part of the Paned container, (the bottom or right panes). A widget for this container to manage. Whether this child should expand when the Paned widget is resized. Whether this child can be made smaller than its default size by the user. Method System.Void Packs a child widget into the first part of the Paned container, (the top or left panes). A widget for this container to manage. Whether this child should expand when the Paned widget is resized. Whether this child can be made smaller than its default size by the user. Method System.Void Adds a child widget into the second part of the Paned container, (the bottom or right panes), with default packing settings. A widget for this container to manage. This is the same as calling with resize set to and shrink set to . Method System.Void Adds a child widget into the first part of the Paned container, (the top or left panes), with default packing settings. A widget for this container to manage. This is the same as calling with resize set to and shrink set to . Method System.Void To be added To be added: an object of type 'int' To be added: an object of type 'int' To be added: an object of type 'int' To be added Method System.Void Disposes the resources associated with the object. Constructor Internal constructor Pointer to the C object. An instance of Paned, wrapping the C object. This is an internal constructor, and should not be used by user code. Constructor Internal constructor This class can not be instantiated directly - use or . Property System.UInt32 The GLib Type for Gtk.Paned The GLib Type for the Gtk.Paned class. Property Gtk.Widget An accessor to the second child widget of this container The child widget added with or . Property Gtk.Widget An accessor to the first child widget of this container The child widget added with or . Property System.Int32 Manage the position of the splitter bar that separates the 2 child widgets. The number of pixels the splitter should appear from the left/top edge. The current position ofh To be added Property System.Boolean To be added To be added: an object of type 'bool' To be added: an object of type 'bool' To be added Event To be added To be added Event To be added To be added Event To be added To be added Event To be added To be added Event To be added To be added Event To be added To be added Constructor Internal constructor GLib type for the type Creates a new instance of Paned, using the GLib-provided type This is a constructor used by derivative types of that would have their own GLib type assigned to it. This is not typically used by C# code.