| 12345678910111213141516171819202122232425262728293031 |
- // This file has been generated by the GUI designer. Do not modify.
- public partial class MainWindow
- {
- private global::Gtk.UIManager UIManager;
- private global::Gtk.Action FileAction;
- protected virtual void Build ()
- {
- global::Stetic.Gui.Initialize (this);
- // Widget MainWindow
- this.UIManager = new global::Gtk.UIManager ();
- global::Gtk.ActionGroup w1 = new global::Gtk.ActionGroup ("Default");
- this.FileAction = new global::Gtk.Action ("FileAction", global::Mono.Unix.Catalog.GetString ("File"), null, null);
- this.FileAction.ShortLabel = global::Mono.Unix.Catalog.GetString ("File");
- w1.Add (this.FileAction, null);
- this.UIManager.InsertActionGroup (w1, 0);
- this.AddAccelGroup (this.UIManager.AccelGroup);
- this.Name = "MainWindow";
- this.Title = global::Mono.Unix.Catalog.GetString ("MainWindow");
- this.WindowPosition = ((global::Gtk.WindowPosition)(4));
- if ((this.Child != null)) {
- this.Child.ShowAll ();
- }
- this.DefaultWidth = 400;
- this.DefaultHeight = 300;
- this.Show ();
- this.DeleteEvent += new global::Gtk.DeleteEventHandler (this.OnDeleteEvent);
- }
- }
|