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