MainWindow.cs 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. // This file has been generated by the GUI designer. Do not modify.
  2. public partial class MainWindow
  3. {
  4. private global::Gtk.UIManager UIManager;
  5. private global::Gtk.Action FileAction;
  6. protected virtual void Build ()
  7. {
  8. global::Stetic.Gui.Initialize (this);
  9. // Widget MainWindow
  10. this.UIManager = new global::Gtk.UIManager ();
  11. global::Gtk.ActionGroup w1 = new global::Gtk.ActionGroup ("Default");
  12. this.FileAction = new global::Gtk.Action ("FileAction", global::Mono.Unix.Catalog.GetString ("File"), null, null);
  13. this.FileAction.ShortLabel = global::Mono.Unix.Catalog.GetString ("File");
  14. w1.Add (this.FileAction, null);
  15. this.UIManager.InsertActionGroup (w1, 0);
  16. this.AddAccelGroup (this.UIManager.AccelGroup);
  17. this.Name = "MainWindow";
  18. this.Title = global::Mono.Unix.Catalog.GetString ("MainWindow");
  19. this.WindowPosition = ((global::Gtk.WindowPosition)(4));
  20. if ((this.Child != null)) {
  21. this.Child.ShowAll ();
  22. }
  23. this.DefaultWidth = 400;
  24. this.DefaultHeight = 300;
  25. this.Show ();
  26. this.DeleteEvent += new global::Gtk.DeleteEventHandler (this.OnDeleteEvent);
  27. }
  28. }