| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // System.Windows.Forms.GroupBox
- //
- // Author:
- // Joel Bason ([email protected])
- //
- //
- namespace System.Windows.Forms {
- /// <summary>
- /// Represents a Windows GroupBox.
- ///
- /// </summary>
- public class GroupBox : Form {
- public GroupBox () : base ()
- {
- }
- internal override Gtk.Widget CreateWidget () {
- Gtk.Frame gbox1 = new Gtk.Frame(null);
- return gbox1;
- }
-
- public override string Text {
- get {
- return ((Gtk.Frame)Widget).Label;
- }
- set {
- ((Gtk.Frame)Widget).Label = value;
- }
-
- }
-
- }
- }
|