DirectOutputR1
DirectOutput framework R1 for virtual pinball cabinets.
Go to:
Overview 
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros Pages
SystemMonitor.Designer.cs
Go to the documentation of this file.
1 namespace DirectOutput.Frontend
2 {
3  partial class SystemMonitor
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 Windows Form Designer generated 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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
36  System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
37  System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
38  System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
39  System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SystemMonitor));
40  this.SystemMonitorTabs = new System.Windows.Forms.TabControl();
41  this.ThreadsTab = new System.Windows.Forms.TabPage();
42  this.ThreadDisplay = new System.Windows.Forms.DataGridView();
43  this.ThreadName = new System.Windows.Forms.DataGridViewTextBoxColumn();
44  this.ThreadHostObject = new System.Windows.Forms.DataGridViewTextBoxColumn();
45  this.ThreadProcessorNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
46  this.ThreadIsAlive = new System.Windows.Forms.DataGridViewCheckBoxColumn();
47  this.ThreadLastHeartBeat = new System.Windows.Forms.DataGridViewTextBoxColumn();
48  this.ThreadExceptions = new System.Windows.Forms.DataGridViewTextBoxColumn();
49  this.StatisticsTab = new System.Windows.Forms.TabPage();
50  this.DurationStatistics = new System.Windows.Forms.DataGridView();
51  this.StatGroup = new System.Windows.Forms.DataGridViewTextBoxColumn();
52  this.StatName = new System.Windows.Forms.DataGridViewTextBoxColumn();
53  this.StatCallsCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
54  this.StatTotalDuration = new System.Windows.Forms.DataGridViewTextBoxColumn();
55  this.StatAvgDuration = new System.Windows.Forms.DataGridViewTextBoxColumn();
56  this.StatMinDuration = new System.Windows.Forms.DataGridViewTextBoxColumn();
57  this.StatMaxDuration = new System.Windows.Forms.DataGridViewTextBoxColumn();
58  this.splitContainer1 = new System.Windows.Forms.SplitContainer();
59  this.RefreshButton = new System.Windows.Forms.Button();
60  this.SystemMonitorTabs.SuspendLayout();
61  this.ThreadsTab.SuspendLayout();
62  ((System.ComponentModel.ISupportInitialize)(this.ThreadDisplay)).BeginInit();
63  this.StatisticsTab.SuspendLayout();
64  ((System.ComponentModel.ISupportInitialize)(this.DurationStatistics)).BeginInit();
65  ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
66  this.splitContainer1.Panel1.SuspendLayout();
67  this.splitContainer1.Panel2.SuspendLayout();
68  this.splitContainer1.SuspendLayout();
69  this.SuspendLayout();
70  //
71  // SystemMonitorTabs
72  //
73  this.SystemMonitorTabs.Controls.Add(this.ThreadsTab);
74  this.SystemMonitorTabs.Controls.Add(this.StatisticsTab);
75  this.SystemMonitorTabs.Dock = System.Windows.Forms.DockStyle.Fill;
76  this.SystemMonitorTabs.Location = new System.Drawing.Point(0, 0);
77  this.SystemMonitorTabs.Name = "SystemMonitorTabs";
78  this.SystemMonitorTabs.SelectedIndex = 0;
79  this.SystemMonitorTabs.Size = new System.Drawing.Size(766, 485);
80  this.SystemMonitorTabs.TabIndex = 1;
81  //
82  // ThreadsTab
83  //
84  this.ThreadsTab.Controls.Add(this.ThreadDisplay);
85  this.ThreadsTab.Location = new System.Drawing.Point(4, 22);
86  this.ThreadsTab.Name = "ThreadsTab";
87  this.ThreadsTab.Padding = new System.Windows.Forms.Padding(3);
88  this.ThreadsTab.Size = new System.Drawing.Size(758, 459);
89  this.ThreadsTab.TabIndex = 0;
90  this.ThreadsTab.Text = "Threads";
91  this.ThreadsTab.UseVisualStyleBackColor = true;
92  //
93  // ThreadDisplay
94  //
95  this.ThreadDisplay.AllowUserToAddRows = false;
96  this.ThreadDisplay.AllowUserToDeleteRows = false;
97  this.ThreadDisplay.AllowUserToOrderColumns = true;
98  this.ThreadDisplay.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
99  this.ThreadDisplay.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
100  this.ThreadName,
101  this.ThreadHostObject,
102  this.ThreadProcessorNumber,
103  this.ThreadIsAlive,
104  this.ThreadLastHeartBeat,
105  this.ThreadExceptions});
106  this.ThreadDisplay.Dock = System.Windows.Forms.DockStyle.Fill;
107  this.ThreadDisplay.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
108  this.ThreadDisplay.Location = new System.Drawing.Point(3, 3);
109  this.ThreadDisplay.MultiSelect = false;
110  this.ThreadDisplay.Name = "ThreadDisplay";
111  this.ThreadDisplay.ReadOnly = true;
112  this.ThreadDisplay.RowHeadersVisible = false;
113  this.ThreadDisplay.RowHeadersWidth = 4;
114  this.ThreadDisplay.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
115  this.ThreadDisplay.Size = new System.Drawing.Size(752, 453);
116  this.ThreadDisplay.TabIndex = 0;
117  //
118  // ThreadName
119  //
120  this.ThreadName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
121  this.ThreadName.HeaderText = "Thread Name";
122  this.ThreadName.Name = "ThreadName";
123  this.ThreadName.ReadOnly = true;
124  //
125  // ThreadHostObject
126  //
127  this.ThreadHostObject.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
128  this.ThreadHostObject.HeaderText = "Host Object";
129  this.ThreadHostObject.Name = "ThreadHostObject";
130  this.ThreadHostObject.ReadOnly = true;
131  //
132  // ThreadProcessorNumber
133  //
134  this.ThreadProcessorNumber.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
135  dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
136  this.ThreadProcessorNumber.DefaultCellStyle = dataGridViewCellStyle1;
137  this.ThreadProcessorNumber.FillWeight = 60F;
138  this.ThreadProcessorNumber.HeaderText = "Processor Number";
139  this.ThreadProcessorNumber.Name = "ThreadProcessorNumber";
140  this.ThreadProcessorNumber.ReadOnly = true;
141  //
142  // ThreadIsAlive
143  //
144  this.ThreadIsAlive.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
145  this.ThreadIsAlive.HeaderText = "Alive";
146  this.ThreadIsAlive.MinimumWidth = 30;
147  this.ThreadIsAlive.Name = "ThreadIsAlive";
148  this.ThreadIsAlive.ReadOnly = true;
149  this.ThreadIsAlive.Width = 36;
150  //
151  // ThreadLastHeartBeat
152  //
153  this.ThreadLastHeartBeat.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
154  this.ThreadLastHeartBeat.FillWeight = 50F;
155  this.ThreadLastHeartBeat.HeaderText = "Last Heartbeat";
156  this.ThreadLastHeartBeat.Name = "ThreadLastHeartBeat";
157  this.ThreadLastHeartBeat.ReadOnly = true;
158  //
159  // ThreadExceptions
160  //
161  this.ThreadExceptions.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
162  dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
163  this.ThreadExceptions.DefaultCellStyle = dataGridViewCellStyle2;
164  this.ThreadExceptions.FillWeight = 30F;
165  this.ThreadExceptions.HeaderText = "Exceptions";
166  this.ThreadExceptions.Name = "ThreadExceptions";
167  this.ThreadExceptions.ReadOnly = true;
168  //
169  // StatisticsTab
170  //
171  this.StatisticsTab.Controls.Add(this.DurationStatistics);
172  this.StatisticsTab.Location = new System.Drawing.Point(4, 22);
173  this.StatisticsTab.Name = "StatisticsTab";
174  this.StatisticsTab.Padding = new System.Windows.Forms.Padding(3);
175  this.StatisticsTab.Size = new System.Drawing.Size(758, 459);
176  this.StatisticsTab.TabIndex = 1;
177  this.StatisticsTab.Text = "Statistics";
178  this.StatisticsTab.UseVisualStyleBackColor = true;
179  //
180  // DurationStatistics
181  //
182  this.DurationStatistics.AllowUserToAddRows = false;
183  this.DurationStatistics.AllowUserToDeleteRows = false;
184  this.DurationStatistics.AllowUserToOrderColumns = true;
185  dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
186  dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
187  dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
188  dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
189  dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
190  dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
191  dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
192  this.DurationStatistics.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle3;
193  this.DurationStatistics.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
194  this.DurationStatistics.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
195  this.StatGroup,
196  this.StatName,
197  this.StatCallsCount,
198  this.StatTotalDuration,
199  this.StatAvgDuration,
200  this.StatMinDuration,
201  this.StatMaxDuration});
202  this.DurationStatistics.Dock = System.Windows.Forms.DockStyle.Fill;
203  this.DurationStatistics.Location = new System.Drawing.Point(3, 3);
204  this.DurationStatistics.MultiSelect = false;
205  this.DurationStatistics.Name = "DurationStatistics";
206  this.DurationStatistics.ReadOnly = true;
207  this.DurationStatistics.RowHeadersVisible = false;
208  this.DurationStatistics.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
209  this.DurationStatistics.Size = new System.Drawing.Size(752, 453);
210  this.DurationStatistics.TabIndex = 0;
211  this.DurationStatistics.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DurationStatistics_CellClick);
212  //
213  // StatGroup
214  //
215  this.StatGroup.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
216  this.StatGroup.FillWeight = 25F;
217  this.StatGroup.HeaderText = "Group";
218  this.StatGroup.Name = "StatGroup";
219  this.StatGroup.ReadOnly = true;
220  //
221  // StatName
222  //
223  this.StatName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
224  this.StatName.FillWeight = 25F;
225  this.StatName.HeaderText = "Name";
226  this.StatName.Name = "StatName";
227  this.StatName.ReadOnly = true;
228  //
229  // StatCallsCount
230  //
231  this.StatCallsCount.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
232  dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
233  this.StatCallsCount.DefaultCellStyle = dataGridViewCellStyle4;
234  this.StatCallsCount.FillWeight = 10F;
235  this.StatCallsCount.HeaderText = "Calls";
236  this.StatCallsCount.Name = "StatCallsCount";
237  this.StatCallsCount.ReadOnly = true;
238  //
239  // StatTotalDuration
240  //
241  this.StatTotalDuration.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
242  dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
243  this.StatTotalDuration.DefaultCellStyle = dataGridViewCellStyle5;
244  this.StatTotalDuration.FillWeight = 10F;
245  this.StatTotalDuration.HeaderText = "Total duration";
246  this.StatTotalDuration.Name = "StatTotalDuration";
247  this.StatTotalDuration.ReadOnly = true;
248  //
249  // StatAvgDuration
250  //
251  this.StatAvgDuration.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
252  dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
253  this.StatAvgDuration.DefaultCellStyle = dataGridViewCellStyle6;
254  this.StatAvgDuration.FillWeight = 10F;
255  this.StatAvgDuration.HeaderText = "Average duration";
256  this.StatAvgDuration.Name = "StatAvgDuration";
257  this.StatAvgDuration.ReadOnly = true;
258  //
259  // StatMinDuration
260  //
261  this.StatMinDuration.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
262  dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
263  this.StatMinDuration.DefaultCellStyle = dataGridViewCellStyle7;
264  this.StatMinDuration.FillWeight = 10F;
265  this.StatMinDuration.HeaderText = "Min. duration";
266  this.StatMinDuration.Name = "StatMinDuration";
267  this.StatMinDuration.ReadOnly = true;
268  //
269  // StatMaxDuration
270  //
271  this.StatMaxDuration.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
272  dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
273  this.StatMaxDuration.DefaultCellStyle = dataGridViewCellStyle8;
274  this.StatMaxDuration.FillWeight = 10F;
275  this.StatMaxDuration.HeaderText = "Max. duration";
276  this.StatMaxDuration.Name = "StatMaxDuration";
277  this.StatMaxDuration.ReadOnly = true;
278  //
279  // splitContainer1
280  //
281  this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
282  this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
283  this.splitContainer1.IsSplitterFixed = true;
284  this.splitContainer1.Location = new System.Drawing.Point(0, 0);
285  this.splitContainer1.Name = "splitContainer1";
286  this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
287  //
288  // splitContainer1.Panel1
289  //
290  this.splitContainer1.Panel1.Controls.Add(this.SystemMonitorTabs);
291  //
292  // splitContainer1.Panel2
293  //
294  this.splitContainer1.Panel2.Controls.Add(this.RefreshButton);
295  this.splitContainer1.Size = new System.Drawing.Size(766, 517);
296  this.splitContainer1.SplitterDistance = 485;
297  this.splitContainer1.TabIndex = 2;
298  //
299  // RefreshButton
300  //
301  this.RefreshButton.Dock = System.Windows.Forms.DockStyle.Fill;
302  this.RefreshButton.Location = new System.Drawing.Point(0, 0);
303  this.RefreshButton.Name = "RefreshButton";
304  this.RefreshButton.Size = new System.Drawing.Size(766, 28);
305  this.RefreshButton.TabIndex = 0;
306  this.RefreshButton.Text = "Refresh";
307  this.RefreshButton.UseVisualStyleBackColor = true;
308  this.RefreshButton.Click += new System.EventHandler(this.RefreshButton_Click);
309  //
310  // SystemMonitor
311  //
312  this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
313  this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
314  this.ClientSize = new System.Drawing.Size(766, 517);
315  this.Controls.Add(this.splitContainer1);
316  this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
317  this.Name = "SystemMonitor";
318  this.Text = "System Monitor";
319  this.SystemMonitorTabs.ResumeLayout(false);
320  this.ThreadsTab.ResumeLayout(false);
321  ((System.ComponentModel.ISupportInitialize)(this.ThreadDisplay)).EndInit();
322  this.StatisticsTab.ResumeLayout(false);
323  ((System.ComponentModel.ISupportInitialize)(this.DurationStatistics)).EndInit();
324  this.splitContainer1.Panel1.ResumeLayout(false);
325  this.splitContainer1.Panel2.ResumeLayout(false);
326  ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
327  this.splitContainer1.ResumeLayout(false);
328  this.ResumeLayout(false);
329 
330  }
331 
332  #endregion
333 
334  private System.Windows.Forms.TabControl SystemMonitorTabs;
335  private System.Windows.Forms.TabPage ThreadsTab;
336  private System.Windows.Forms.TabPage StatisticsTab;
337  private System.Windows.Forms.DataGridView ThreadDisplay;
338  private System.Windows.Forms.SplitContainer splitContainer1;
339  private System.Windows.Forms.Button RefreshButton;
340  private System.Windows.Forms.DataGridViewTextBoxColumn ThreadName;
341  private System.Windows.Forms.DataGridViewTextBoxColumn ThreadHostObject;
342  private System.Windows.Forms.DataGridViewTextBoxColumn ThreadProcessorNumber;
343  private System.Windows.Forms.DataGridViewCheckBoxColumn ThreadIsAlive;
344  private System.Windows.Forms.DataGridViewTextBoxColumn ThreadLastHeartBeat;
345  private System.Windows.Forms.DataGridViewTextBoxColumn ThreadExceptions;
346  private System.Windows.Forms.DataGridView DurationStatistics;
347  private System.Windows.Forms.DataGridViewTextBoxColumn StatGroup;
348  private System.Windows.Forms.DataGridViewTextBoxColumn StatName;
349  private System.Windows.Forms.DataGridViewTextBoxColumn StatCallsCount;
350  private System.Windows.Forms.DataGridViewTextBoxColumn StatTotalDuration;
351  private System.Windows.Forms.DataGridViewTextBoxColumn StatAvgDuration;
352  private System.Windows.Forms.DataGridViewTextBoxColumn StatMinDuration;
353  private System.Windows.Forms.DataGridViewTextBoxColumn StatMaxDuration;
354  }
355 }