25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

ThePimp.SaveFile.cs 3.2 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. // ------------------------------------------------------------------------------
  2. // <autogenerated>
  3. // This code was generated by a tool.
  4. // Mono Runtime Version: 2.0.50727.42
  5. //
  6. // Changes to this file may cause incorrect behavior and will be lost if
  7. // the code is regenerated.
  8. // </autogenerated>
  9. // ------------------------------------------------------------------------------
  10. namespace ThePimp {
  11. public partial class SaveFile {
  12. private Gtk.FileChooserWidget filechooserwidget1;
  13. private Gtk.Button buttonCancel;
  14. private Gtk.Button buttonOk;
  15. protected virtual void Build() {
  16. Stetic.Gui.Initialize(this);
  17. // Widget ThePimp.SaveFile
  18. this.Name = "ThePimp.SaveFile";
  19. this.WindowPosition = ((Gtk.WindowPosition)(4));
  20. this.HasSeparator = false;
  21. // Internal child ThePimp.SaveFile.VBox
  22. Gtk.VBox w1 = this.VBox;
  23. w1.Name = "dialog1_VBox";
  24. w1.BorderWidth = ((uint)(2));
  25. // Container child dialog1_VBox.Gtk.Box+BoxChild
  26. this.filechooserwidget1 = new Gtk.FileChooserWidget(((Gtk.FileChooserAction)(0)));
  27. this.filechooserwidget1.Name = "filechooserwidget1";
  28. w1.Add(this.filechooserwidget1);
  29. Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(w1[this.filechooserwidget1]));
  30. w2.Position = 0;
  31. // Internal child ThePimp.SaveFile.ActionArea
  32. Gtk.HButtonBox w3 = this.ActionArea;
  33. w3.Name = "dialog1_ActionArea";
  34. w3.Spacing = 6;
  35. w3.BorderWidth = ((uint)(5));
  36. w3.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
  37. // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
  38. this.buttonCancel = new Gtk.Button();
  39. this.buttonCancel.CanDefault = true;
  40. this.buttonCancel.CanFocus = true;
  41. this.buttonCancel.Name = "buttonCancel";
  42. this.buttonCancel.UseStock = true;
  43. this.buttonCancel.UseUnderline = true;
  44. this.buttonCancel.Label = "gtk-cancel";
  45. this.AddActionWidget(this.buttonCancel, -6);
  46. Gtk.ButtonBox.ButtonBoxChild w4 = ((Gtk.ButtonBox.ButtonBoxChild)(w3[this.buttonCancel]));
  47. w4.Expand = false;
  48. w4.Fill = false;
  49. // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
  50. this.buttonOk = new Gtk.Button();
  51. this.buttonOk.CanDefault = true;
  52. this.buttonOk.CanFocus = true;
  53. this.buttonOk.Name = "buttonOk";
  54. this.buttonOk.UseStock = true;
  55. this.buttonOk.UseUnderline = true;
  56. this.buttonOk.Label = "gtk-ok";
  57. this.AddActionWidget(this.buttonOk, -5);
  58. Gtk.ButtonBox.ButtonBoxChild w5 = ((Gtk.ButtonBox.ButtonBoxChild)(w3[this.buttonOk]));
  59. w5.Position = 1;
  60. w5.Expand = false;
  61. w5.Fill = false;
  62. if ((this.Child != null)) {
  63. this.Child.ShowAll();
  64. }
  65. this.DefaultWidth = 400;
  66. this.DefaultHeight = 300;
  67. this.Show();
  68. }
  69. }
  70. }