Mercurial > repos > IBDev-IBBoard.WarFoundry.GUI.WinForms
annotate FrmXmlExport.Designer.cs @ 226:4ada3252d1ea
Re #101: Make army names and sizes modifiable after creation
* Fix up translations
* Correct enabling of menu item
* Add translation text
* Update army names in tree and app title when edited
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Mon, 29 Aug 2011 20:53:53 +0100 |
parents | a6ce13e4ae89 |
children | 4d25c42bbe7b |
rev | line source |
---|---|
213 | 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.bttnExport = new IBBoard.Windows.Forms.IBBButton(); | |
37 this.bttnCancel = new IBBoard.Windows.Forms.IBBButton(); | |
214
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
38 this.tbXslPath = new System.Windows.Forms.TextBox(); |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
39 this.bttnXslSelect = new IBBoard.Windows.Forms.IBBButton(); |
213 | 40 this.SuspendLayout(); |
41 // | |
42 // lbTitle | |
43 // | |
44 this.lbTitle.AutoSize = true; | |
45 this.lbTitle.Location = new System.Drawing.Point(12, 9); | |
46 this.lbTitle.Name = "lbTitle"; | |
47 this.lbTitle.Size = new System.Drawing.Size(61, 13); | |
48 this.lbTitle.TabIndex = 0; | |
49 this.lbTitle.Text = "XML Ouput"; | |
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; | |
214
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
78 this.cbApplyTransform.CheckedChanged += new System.EventHandler(this.cbApplyTransform_CheckedChanged); |
213 | 79 // |
80 // bttnExport | |
81 // | |
82 this.bttnExport.Enabled = false; | |
83 this.bttnExport.Location = new System.Drawing.Point(78, 116); | |
84 this.bttnExport.Name = "bttnExport"; | |
85 this.bttnExport.Size = new System.Drawing.Size(75, 23); | |
86 this.bttnExport.TabIndex = 5; | |
87 this.bttnExport.Text = "&Export"; | |
88 this.bttnExport.UseVisualStyleBackColor = true; | |
89 this.bttnExport.Click += new System.EventHandler(this.bttnExport_Click); | |
90 // | |
91 // bttnCancel | |
92 // | |
93 this.bttnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; | |
94 this.bttnCancel.Location = new System.Drawing.Point(159, 116); | |
95 this.bttnCancel.Name = "bttnCancel"; | |
96 this.bttnCancel.Size = new System.Drawing.Size(75, 23); | |
97 this.bttnCancel.TabIndex = 6; | |
98 this.bttnCancel.Text = "&Cancel"; | |
99 this.bttnCancel.UseVisualStyleBackColor = true; | |
100 this.bttnCancel.Click += new System.EventHandler(this.bttnCancel_Click); | |
101 // | |
214
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
102 // tbXslPath |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
103 // |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
104 this.tbXslPath.Enabled = false; |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
105 this.tbXslPath.Location = new System.Drawing.Point(15, 77); |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
106 this.tbXslPath.Name = "tbXslPath"; |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
107 this.tbXslPath.Size = new System.Drawing.Size(179, 20); |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
108 this.tbXslPath.TabIndex = 7; |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
109 // |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
110 // bttnXslSelect |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
111 // |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
112 this.bttnXslSelect.Enabled = false; |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
113 this.bttnXslSelect.Location = new System.Drawing.Point(202, 77); |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
114 this.bttnXslSelect.Name = "bttnXslSelect"; |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
115 this.bttnXslSelect.Size = new System.Drawing.Size(32, 20); |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
116 this.bttnXslSelect.TabIndex = 8; |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
117 this.bttnXslSelect.Text = "..."; |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
118 this.bttnXslSelect.UseVisualStyleBackColor = true; |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
119 this.bttnXslSelect.Click += new System.EventHandler(this.bttnXslSelect_Click); |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
120 // |
213 | 121 // FrmXmlExport |
122 // | |
123 this.AcceptButton = this.bttnExport; | |
124 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); | |
125 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; | |
126 this.CancelButton = this.bttnCancel; | |
127 this.ClientSize = new System.Drawing.Size(241, 145); | |
128 this.ControlBox = false; | |
214
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
129 this.Controls.Add(this.bttnXslSelect); |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
130 this.Controls.Add(this.tbXslPath); |
213 | 131 this.Controls.Add(this.bttnCancel); |
132 this.Controls.Add(this.bttnExport); | |
133 this.Controls.Add(this.cbApplyTransform); | |
134 this.Controls.Add(this.bttnOutputSelect); | |
135 this.Controls.Add(this.tbOutputFile); | |
136 this.Controls.Add(this.lbTitle); | |
137 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; | |
138 this.Name = "FrmXmlExport"; | |
139 this.ShowIcon = false; | |
140 this.ShowInTaskbar = false; | |
141 this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; | |
142 this.Text = "Export as XML"; | |
143 this.TopMost = true; | |
144 this.Load += new System.EventHandler(this.FrmXmlExport_Load); | |
145 this.ResumeLayout(false); | |
146 this.PerformLayout(); | |
147 | |
148 } | |
149 | |
150 #endregion | |
151 | |
152 private Windows.Forms.IBBLabel lbTitle; | |
153 private System.Windows.Forms.TextBox tbOutputFile; | |
154 private System.Windows.Forms.SaveFileDialog saveFileDialog1; | |
155 private Windows.Forms.IBBButton bttnOutputSelect; | |
156 private System.Windows.Forms.CheckBox cbApplyTransform; | |
157 private Windows.Forms.IBBButton bttnExport; | |
158 private Windows.Forms.IBBButton bttnCancel; | |
214
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
159 private System.Windows.Forms.TextBox tbXslPath; |
a6ce13e4ae89
Near Final XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
213
diff
changeset
|
160 private Windows.Forms.IBBButton bttnXslSelect; |
213 | 161 } |
162 } |