comparison FrmXmlExport.Designer.cs @ 209:f57957fe9009 xml-export-ui

UI Dialog for XML output
author Dan.Kulinski@dank-laptop.Global.Local
date Sun, 14 Aug 2011 23:04:42 -0600
parents
children a6ce13e4ae89
comparison
equal deleted inserted replaced
208:256f2f2f6e8c 209:f57957fe9009
1 namespace IBBoard.WarFoundry.GUI.WinForms
2 {
3 partial class FrmXmlExport
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.lbTitle = new IBBoard.Windows.Forms.IBBLabel();
32 this.tbOutputFile = new System.Windows.Forms.TextBox();
33 this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
34 this.bttnOutputSelect = new IBBoard.Windows.Forms.IBBButton();
35 this.cbApplyTransform = new System.Windows.Forms.CheckBox();
36 this.cmbXslSelect = new System.Windows.Forms.ComboBox();
37 this.bttnExport = new IBBoard.Windows.Forms.IBBButton();
38 this.bttnCancel = new IBBoard.Windows.Forms.IBBButton();
39 this.SuspendLayout();
40 //
41 // lbTitle
42 //
43 this.lbTitle.AutoSize = true;
44 this.lbTitle.Location = new System.Drawing.Point(12, 9);
45 this.lbTitle.Name = "lbTitle";
46 this.lbTitle.Size = new System.Drawing.Size(61, 13);
47 this.lbTitle.TabIndex = 0;
48 this.lbTitle.Text = "XML Ouput";
49 this.lbTitle.Click += new System.EventHandler(this.ibbLabel1_Click);
50 //
51 // tbOutputFile
52 //
53 this.tbOutputFile.Location = new System.Drawing.Point(15, 28);
54 this.tbOutputFile.Name = "tbOutputFile";
55 this.tbOutputFile.Size = new System.Drawing.Size(179, 20);
56 this.tbOutputFile.TabIndex = 1;
57 this.tbOutputFile.TextChanged += new System.EventHandler(this.tbOutputFile_Change);
58 //
59 // bttnOutputSelect
60 //
61 this.bttnOutputSelect.Location = new System.Drawing.Point(202, 28);
62 this.bttnOutputSelect.Name = "bttnOutputSelect";
63 this.bttnOutputSelect.Size = new System.Drawing.Size(32, 20);
64 this.bttnOutputSelect.TabIndex = 2;
65 this.bttnOutputSelect.Text = "...";
66 this.bttnOutputSelect.UseVisualStyleBackColor = true;
67 this.bttnOutputSelect.Click += new System.EventHandler(this.bttnOutputSelect_Click);
68 //
69 // cbApplyTransform
70 //
71 this.cbApplyTransform.AutoSize = true;
72 this.cbApplyTransform.Location = new System.Drawing.Point(15, 54);
73 this.cbApplyTransform.Name = "cbApplyTransform";
74 this.cbApplyTransform.Size = new System.Drawing.Size(125, 17);
75 this.cbApplyTransform.TabIndex = 3;
76 this.cbApplyTransform.Text = "Apply XSL Transform";
77 this.cbApplyTransform.UseVisualStyleBackColor = true;
78 this.cbApplyTransform.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
79 //
80 // cmbXslSelect
81 //
82 this.cmbXslSelect.Enabled = false;
83 this.cmbXslSelect.FormattingEnabled = true;
84 this.cmbXslSelect.Items.AddRange(new object[] {
85 "Default",
86 "..."});
87 this.cmbXslSelect.Location = new System.Drawing.Point(15, 77);
88 this.cmbXslSelect.Name = "cmbXslSelect";
89 this.cmbXslSelect.Size = new System.Drawing.Size(219, 21);
90 this.cmbXslSelect.TabIndex = 4;
91 this.cmbXslSelect.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
92 //
93 // bttnExport
94 //
95 this.bttnExport.Enabled = false;
96 this.bttnExport.Location = new System.Drawing.Point(78, 116);
97 this.bttnExport.Name = "bttnExport";
98 this.bttnExport.Size = new System.Drawing.Size(75, 23);
99 this.bttnExport.TabIndex = 5;
100 this.bttnExport.Text = "&Export";
101 this.bttnExport.UseVisualStyleBackColor = true;
102 this.bttnExport.Click += new System.EventHandler(this.bttnExport_Click);
103 //
104 // bttnCancel
105 //
106 this.bttnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
107 this.bttnCancel.Location = new System.Drawing.Point(159, 116);
108 this.bttnCancel.Name = "bttnCancel";
109 this.bttnCancel.Size = new System.Drawing.Size(75, 23);
110 this.bttnCancel.TabIndex = 6;
111 this.bttnCancel.Text = "&Cancel";
112 this.bttnCancel.UseVisualStyleBackColor = true;
113 this.bttnCancel.Click += new System.EventHandler(this.bttnCancel_Click);
114 //
115 // FrmXmlExport
116 //
117 this.AcceptButton = this.bttnExport;
118 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
119 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
120 this.CancelButton = this.bttnCancel;
121 this.ClientSize = new System.Drawing.Size(241, 145);
122 this.ControlBox = false;
123 this.Controls.Add(this.bttnCancel);
124 this.Controls.Add(this.bttnExport);
125 this.Controls.Add(this.cmbXslSelect);
126 this.Controls.Add(this.cbApplyTransform);
127 this.Controls.Add(this.bttnOutputSelect);
128 this.Controls.Add(this.tbOutputFile);
129 this.Controls.Add(this.lbTitle);
130 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
131 this.Name = "FrmXmlExport";
132 this.ShowIcon = false;
133 this.ShowInTaskbar = false;
134 this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
135 this.Text = "Export as XML";
136 this.TopMost = true;
137 this.Load += new System.EventHandler(this.FrmXmlExport_Load);
138 this.ResumeLayout(false);
139 this.PerformLayout();
140
141 }
142
143 #endregion
144
145 private Windows.Forms.IBBLabel lbTitle;
146 private System.Windows.Forms.TextBox tbOutputFile;
147 private System.Windows.Forms.SaveFileDialog saveFileDialog1;
148 private Windows.Forms.IBBButton bttnOutputSelect;
149 private System.Windows.Forms.CheckBox cbApplyTransform;
150 private System.Windows.Forms.ComboBox cmbXslSelect;
151 private Windows.Forms.IBBButton bttnExport;
152 private Windows.Forms.IBBButton bttnCancel;
153 }
154 }