1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
// This file has been generated by the GUI designer. Do not modify.
namespace MonoDevelop.Database.Components
{
public partial class DatabaseAvailableProvidersDialog
{
private global::Gtk.HBox hbox9;
private global::Gtk.Label label3;
private global::Gtk.ComboBox comboProviders;
private global::Gtk.Button buttonCancel;
private global::Gtk.Button buttonOk;
protected virtual void Build ()
{
global::Stetic.Gui.Initialize (this);
// Widget MonoDevelop.Database.Components.DatabaseAvailableProvidersDialog
this.Name = "MonoDevelop.Database.Components.DatabaseAvailableProvidersDialog";
this.Title = global::MonoDevelop.Database.AddinCatalog.GetString ("Available Providers");
this.WindowPosition = ((global::Gtk.WindowPosition)(4));
// Internal child MonoDevelop.Database.Components.DatabaseAvailableProvidersDialog.VBox
global::Gtk.VBox w1 = this.VBox;
w1.Name = "dialog1_VBox";
w1.BorderWidth = ((uint)(2));
// Container child dialog1_VBox.Gtk.Box+BoxChild
this.hbox9 = new global::Gtk.HBox ();
this.hbox9.Name = "hbox9";
this.hbox9.Spacing = 6;
// Container child hbox9.Gtk.Box+BoxChild
this.label3 = new global::Gtk.Label ();
this.label3.Name = "label3";
this.label3.LabelProp = global::MonoDevelop.Database.AddinCatalog.GetString ("Choose a Provider");
this.hbox9.Add (this.label3);
global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox9[this.label3]));
w2.Position = 0;
w2.Expand = false;
w2.Fill = false;
// Container child hbox9.Gtk.Box+BoxChild
this.comboProviders = new global::Gtk.ComboBox ();
this.comboProviders.Name = "comboProviders";
this.hbox9.Add (this.comboProviders);
global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox9[this.comboProviders]));
w3.Position = 1;
w1.Add (this.hbox9);
global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(w1[this.hbox9]));
w4.Position = 0;
w4.Expand = false;
w4.Fill = false;
// Internal child MonoDevelop.Database.Components.DatabaseAvailableProvidersDialog.ActionArea
global::Gtk.HButtonBox w5 = this.ActionArea;
w5.Name = "dialog1_ActionArea";
w5.Spacing = 10;
w5.BorderWidth = ((uint)(5));
w5.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
this.buttonCancel = new global::Gtk.Button ();
this.buttonCancel.CanDefault = true;
this.buttonCancel.CanFocus = true;
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.UseStock = true;
this.buttonCancel.UseUnderline = true;
this.buttonCancel.Label = "gtk-cancel";
this.AddActionWidget (this.buttonCancel, -6);
global::Gtk.ButtonBox.ButtonBoxChild w6 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w5[this.buttonCancel]));
w6.Expand = false;
w6.Fill = false;
// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
this.buttonOk = new global::Gtk.Button ();
this.buttonOk.CanDefault = true;
this.buttonOk.CanFocus = true;
this.buttonOk.Name = "buttonOk";
this.buttonOk.UseStock = true;
this.buttonOk.UseUnderline = true;
this.buttonOk.Label = "gtk-ok";
this.AddActionWidget (this.buttonOk, -5);
global::Gtk.ButtonBox.ButtonBoxChild w7 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w5[this.buttonOk]));
w7.Position = 1;
w7.Expand = false;
w7.Fill = false;
if ((this.Child != null)) {
this.Child.ShowAll ();
}
this.DefaultWidth = 469;
this.DefaultHeight = 102;
this.Show ();
}
}
}
|