gtk-sharpGtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details.Gtk.ContainerGtk.IOrientableBase 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;
}
Constructor
To be added.
To be added.To be added.Constructor
Pointer to the C object.
Internal constructorThis is an internal constructor, and should not be used by user code.EventGLib.Signal("accept-position")Gtk.AcceptPositionHandlerEmitted when the paned has focus
This signal is emitted when paned has the focus and any of
the Return, Enter, Space keys are pressed. This will also
cause the child widget with the focus to be activated.
MethodSystem.Void
A widget for this container to manage.
Adds a child widget into the first part of the Paned container, (the top or left panes), with default packing settings.This is the same as calling with resize set to and shrink set to .MethodSystem.Void
A widget for this container to manage.
Adds a child widget into the second part of the Paned container, (the bottom or right panes), with default packing settings.This is the same as calling with resize set to and shrink set to .EventGLib.Signal("cancel-position")Gtk.CancelPositionHandler
Emitted when the Esc key is pressed while paned has the focus.
PropertyGtk.WidgetAn accessor to the first child widget of this containerThe child widget added with or .PropertyGtk.WidgetAn accessor to the second child widget of this containerThe child widget added with or .EventGLib.Signal("cycle-child-focus")Gtk.CycleChildFocusHandlerEmitted when F6 or Shift-F6 is pressed while paned has the focus.EventGLib.Signal("cycle-handle-focus")Gtk.CycleHandleFocusHandler
Emitted when paned has the focus and one of the tab key
combinations are pressed.
This signal is emitted when paned has the focus and any of
the Tab, Ctrl-Tab, Shift-Tab or Ctrl-Shift-Tab keys
combinations are pressed. Tab and Ctrl-Tab set reversed to
while Shift-Tab and Ctrl-Shift-Tab
set reversed to .
PropertyGLib.GTypeGType Property.a Returns the native value for .PropertyGdk.WindowTo be added.To be added.To be added.PropertyGtk.Container+ContainerChild
To be added.
To be added.To be added.To be added.PropertyGLib.Property("max-position")System.Int32The largest possible value for the position property.
This property is derived from the size and shrinkability of the widget's children.
a PropertyGLib.Property("min-position")System.Int32The smallest possible value for the position property.
This property is derived from the size and shrinkability of the widget's children.
a EventGLib.Signal("move-handle")Gtk.MoveHandleHandler
Emitted when paned has the focus and the separator is moved.
MethodGLib.DefaultSignalHandler(ConnectionMethod="OverrideAcceptPosition", Type=typeof(Gtk.Paned))System.BooleanDefault handler for the event.a Override this method in a subclass to provide a default handler for the event.MethodGLib.DefaultSignalHandler(ConnectionMethod="OverrideCancelPosition", Type=typeof(Gtk.Paned))System.BooleanDefault handler for the event.a Override this method in a subclass to provide a default handler for the event.MethodGLib.DefaultSignalHandler(ConnectionMethod="OverrideCycleChildFocus", Type=typeof(Gtk.Paned))System.Boolean
a Default handler for the event.a Override this method in a subclass to provide a default handler for the event.MethodGLib.DefaultSignalHandler(ConnectionMethod="OverrideCycleHandleFocus", Type=typeof(Gtk.Paned))System.Boolean
a Default handler for the event.a Override this method in a subclass to provide a default handler for the event.MethodGLib.DefaultSignalHandler(ConnectionMethod="OverrideMoveHandle", Type=typeof(Gtk.Paned))System.Boolean
a Default handler for the event.a Override this method in a subclass to provide a default handler for the event.MethodGLib.DefaultSignalHandler(ConnectionMethod="OverrideToggleHandleFocus", Type=typeof(Gtk.Paned))System.BooleanDefault handler for the event.a Override this method in a subclass to provide a default handler for the event.PropertyGLib.Property("orientation")Gtk.OrientationTo be added.To be added.To be added.MethodSystem.Void
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.
Packs a child widget into the first part of the Paned container, (the top or left panes).MethodSystem.Void
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.
Packs a child widget into the second part of the Paned container, (the bottom or right panes).PropertyGLib.Property("position")System.Int32Manage the position of the splitter bar that separates the 2 child widgets.The current position ofhPropertyGLib.Property("position-set")System.BooleanWhether the position property (related to and
) should be used.an object of type EventGLib.Signal("toggle-handle-focus")Gtk.ToggleHandleFocusHandler
Emitted when paned has the focus and F8 is pressed to give the focus to or take the focus from the separator handle.