WIP
DirectOutput framework for virtual pinball cabinets WIP
Go to:
Overview 
ConfigTester.Designer.cs
Go to the documentation of this file.
2 {
3  partial class ConfigTester
4  {
8  private System.ComponentModel.IContainer components = null;
9 
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 Vom Windows Form-Designer generierter Code
24 
29  private void InitializeComponent()
30  {
31  System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
32  System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
33  System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
34  System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
35  System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConfigTester));
36  this.OpenGlobalConfigDialog = new System.Windows.Forms.OpenFileDialog();
37  this.OpenTableDialog = new System.Windows.Forms.OpenFileDialog();
38  this.TableElements = new System.Windows.Forms.DataGridView();
39  this.TEType = new System.Windows.Forms.DataGridViewTextBoxColumn();
40  this.TEName = new System.Windows.Forms.DataGridViewTextBoxColumn();
41  this.TENumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
42  this.TEValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
43  this.TEActivate = new System.Windows.Forms.DataGridViewButtonColumn();
44  this.TEPulse = new System.Windows.Forms.DataGridViewButtonColumn();
45  this.ActivateAllButton = new System.Windows.Forms.Button();
46  this.DeactivateAllButton = new System.Windows.Forms.Button();
47  this.label1 = new System.Windows.Forms.Label();
48  this.PulseDurationInput = new System.Windows.Forms.NumericUpDown();
49  this.label2 = new System.Windows.Forms.Label();
50  this.LoadConfigButton = new System.Windows.Forms.Button();
51  this.ShowFrontEndButton = new System.Windows.Forms.Button();
52  ((System.ComponentModel.ISupportInitialize)(this.TableElements)).BeginInit();
53  ((System.ComponentModel.ISupportInitialize)(this.PulseDurationInput)).BeginInit();
54  this.SuspendLayout();
55  //
56  // OpenGlobalConfigDialog
57  //
58  this.OpenGlobalConfigDialog.FileName = "openFileDialog1";
59  //
60  // OpenTableDialog
61  //
62  this.OpenTableDialog.FileName = "openFileDialog1";
63  //
64  // TableElements
65  //
66  this.TableElements.AllowUserToAddRows = false;
67  this.TableElements.AllowUserToDeleteRows = false;
68  this.TableElements.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
69  | System.Windows.Forms.AnchorStyles.Left)
70  | System.Windows.Forms.AnchorStyles.Right)));
71  this.TableElements.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
72  this.TableElements.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
73  this.TEType,
74  this.TEName,
75  this.TENumber,
76  this.TEValue,
77  this.TEActivate,
78  this.TEPulse});
79  this.TableElements.Location = new System.Drawing.Point(3, 1);
80  this.TableElements.Name = "TableElements";
81  this.TableElements.RowHeadersVisible = false;
82  this.TableElements.Size = new System.Drawing.Size(719, 396);
83  this.TableElements.TabIndex = 0;
84  this.TableElements.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.TableElements_CellClick);
85  this.TableElements.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.TableElements_CellValueChanged);
86  //
87  // TEType
88  //
89  dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
90  this.TEType.DefaultCellStyle = dataGridViewCellStyle1;
91  this.TEType.HeaderText = "Type";
92  this.TEType.Name = "TEType";
93  this.TEType.ReadOnly = true;
94  //
95  // TEName
96  //
97  dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
98  this.TEName.DefaultCellStyle = dataGridViewCellStyle2;
99  this.TEName.HeaderText = "Name";
100  this.TEName.Name = "TEName";
101  this.TEName.ReadOnly = true;
102  //
103  // TENumber
104  //
105  dataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
106  this.TENumber.DefaultCellStyle = dataGridViewCellStyle3;
107  this.TENumber.HeaderText = "Number";
108  this.TENumber.Name = "TENumber";
109  this.TENumber.ReadOnly = true;
110  //
111  // TEValue
112  //
113  dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
114  this.TEValue.DefaultCellStyle = dataGridViewCellStyle4;
115  this.TEValue.HeaderText = "Value";
116  this.TEValue.Name = "TEValue";
117  //
118  // TEActivate
119  //
120  this.TEActivate.HeaderText = "Activate";
121  this.TEActivate.Name = "TEActivate";
122  this.TEActivate.ReadOnly = true;
123  //
124  // TEPulse
125  //
126  this.TEPulse.HeaderText = "Pulse";
127  this.TEPulse.Name = "TEPulse";
128  this.TEPulse.ReadOnly = true;
129  //
130  // ActivateAllButton
131  //
132  this.ActivateAllButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
133  this.ActivateAllButton.Location = new System.Drawing.Point(356, 403);
134  this.ActivateAllButton.Name = "ActivateAllButton";
135  this.ActivateAllButton.Size = new System.Drawing.Size(90, 23);
136  this.ActivateAllButton.TabIndex = 1;
137  this.ActivateAllButton.Text = "Activate all";
138  this.ActivateAllButton.UseVisualStyleBackColor = true;
139  this.ActivateAllButton.Click += new System.EventHandler(this.ActivateAllButton_Click);
140  //
141  // DeactivateAllButton
142  //
143  this.DeactivateAllButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
144  this.DeactivateAllButton.Location = new System.Drawing.Point(452, 403);
145  this.DeactivateAllButton.Name = "DeactivateAllButton";
146  this.DeactivateAllButton.Size = new System.Drawing.Size(93, 23);
147  this.DeactivateAllButton.TabIndex = 2;
148  this.DeactivateAllButton.Text = "Deactivate all";
149  this.DeactivateAllButton.UseVisualStyleBackColor = true;
150  this.DeactivateAllButton.Click += new System.EventHandler(this.DeactivateAllButton_Click);
151  //
152  // label1
153  //
154  this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
155  this.label1.AutoSize = true;
156  this.label1.Location = new System.Drawing.Point(551, 408);
157  this.label1.Name = "label1";
158  this.label1.Size = new System.Drawing.Size(77, 13);
159  this.label1.TabIndex = 4;
160  this.label1.Text = "Pulse duration:";
161  //
162  // PulseDurationInput
163  //
164  this.PulseDurationInput.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
165  this.PulseDurationInput.Increment = new decimal(new int[] {
166  10,
167  0,
168  0,
169  0});
170  this.PulseDurationInput.Location = new System.Drawing.Point(634, 406);
171  this.PulseDurationInput.Maximum = new decimal(new int[] {
172  5000,
173  0,
174  0,
175  0});
176  this.PulseDurationInput.Minimum = new decimal(new int[] {
177  10,
178  0,
179  0,
180  0});
181  this.PulseDurationInput.Name = "PulseDurationInput";
182  this.PulseDurationInput.Size = new System.Drawing.Size(66, 20);
183  this.PulseDurationInput.TabIndex = 5;
184  this.PulseDurationInput.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
185  this.PulseDurationInput.Value = new decimal(new int[] {
186  60,
187  0,
188  0,
189  0});
190  this.PulseDurationInput.ValueChanged += new System.EventHandler(this.PulseDurationInput_ValueChanged);
191  //
192  // label2
193  //
194  this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
195  this.label2.AutoSize = true;
196  this.label2.Location = new System.Drawing.Point(701, 408);
197  this.label2.Name = "label2";
198  this.label2.Size = new System.Drawing.Size(20, 13);
199  this.label2.TabIndex = 6;
200  this.label2.Text = "ms";
201  //
202  // LoadConfigButton
203  //
204  this.LoadConfigButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
205  this.LoadConfigButton.Location = new System.Drawing.Point(12, 403);
206  this.LoadConfigButton.Name = "LoadConfigButton";
207  this.LoadConfigButton.Size = new System.Drawing.Size(97, 23);
208  this.LoadConfigButton.TabIndex = 7;
209  this.LoadConfigButton.Text = "Load config";
210  this.LoadConfigButton.UseVisualStyleBackColor = true;
211  this.LoadConfigButton.Click += new System.EventHandler(this.LoadConfigButton_Click);
212  //
213  // ShowFrontEndButton
214  //
215  this.ShowFrontEndButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
216  this.ShowFrontEndButton.Location = new System.Drawing.Point(116, 403);
217  this.ShowFrontEndButton.Name = "ShowFrontEndButton";
218  this.ShowFrontEndButton.Size = new System.Drawing.Size(152, 23);
219  this.ShowFrontEndButton.TabIndex = 8;
220  this.ShowFrontEndButton.Text = "Show DirectOutput FrontEnd";
221  this.ShowFrontEndButton.UseVisualStyleBackColor = true;
222  this.ShowFrontEndButton.Click += new System.EventHandler(this.ShowFrontEndButton_Click);
223  //
224  // ConfigTester
225  //
226  this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
227  this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
228  this.ClientSize = new System.Drawing.Size(724, 438);
229  this.Controls.Add(this.ShowFrontEndButton);
230  this.Controls.Add(this.LoadConfigButton);
231  this.Controls.Add(this.label2);
232  this.Controls.Add(this.PulseDurationInput);
233  this.Controls.Add(this.label1);
234  this.Controls.Add(this.DeactivateAllButton);
235  this.Controls.Add(this.ActivateAllButton);
236  this.Controls.Add(this.TableElements);
237  this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
238  this.Name = "ConfigTester";
239  this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
240  this.Text = "DirectOutput configuration tester";
241  this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ConfigTester_FormClosing);
242  this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ConfigTester_FormClosed);
243  this.Load += new System.EventHandler(this.ConfigTester_Load);
244  ((System.ComponentModel.ISupportInitialize)(this.TableElements)).EndInit();
245  ((System.ComponentModel.ISupportInitialize)(this.PulseDurationInput)).EndInit();
246  this.ResumeLayout(false);
247  this.PerformLayout();
248 
249  }
250 
251  #endregion
252 
253  private System.Windows.Forms.OpenFileDialog OpenGlobalConfigDialog;
254  private System.Windows.Forms.OpenFileDialog OpenTableDialog;
255  private System.Windows.Forms.DataGridView TableElements;
256  private System.Windows.Forms.Button ActivateAllButton;
257  private System.Windows.Forms.Button DeactivateAllButton;
258  private System.Windows.Forms.Label label1;
259  private System.Windows.Forms.NumericUpDown PulseDurationInput;
260  private System.Windows.Forms.Label label2;
261  private System.Windows.Forms.Button LoadConfigButton;
262  private System.Windows.Forms.DataGridViewTextBoxColumn TEType;
263  private System.Windows.Forms.DataGridViewTextBoxColumn TEName;
264  private System.Windows.Forms.DataGridViewTextBoxColumn TENumber;
265  private System.Windows.Forms.DataGridViewTextBoxColumn TEValue;
266  private System.Windows.Forms.DataGridViewButtonColumn TEActivate;
267  private System.Windows.Forms.DataGridViewButtonColumn TEPulse;
268  private System.Windows.Forms.Button ShowFrontEndButton;
269  }
270 }
271 
override void Dispose(bool disposing)
Verwendete Ressourcen bereinigen.