-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathPCIRangeMonitor.Designer.cs
More file actions
116 lines (110 loc) · 6.34 KB
/
PCIRangeMonitor.Designer.cs
File metadata and controls
116 lines (110 loc) · 6.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
namespace ZenStatesDebugTool
{
partial class PCIRangeMonitor
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PCIRangeMonitor));
this.dataGridViewPCIRange = new System.Windows.Forms.DataGridView();
this.Address = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Value = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewPCIRange)).BeginInit();
this.SuspendLayout();
//
// dataGridViewPCIRange
//
this.dataGridViewPCIRange.AllowUserToAddRows = false;
this.dataGridViewPCIRange.AllowUserToDeleteRows = false;
this.dataGridViewPCIRange.AllowUserToResizeRows = false;
dataGridViewCellStyle1.BackColor = System.Drawing.Color.WhiteSmoke;
this.dataGridViewPCIRange.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
this.dataGridViewPCIRange.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.dataGridViewPCIRange.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.dataGridViewPCIRange.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleVertical;
this.dataGridViewPCIRange.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
this.dataGridViewPCIRange.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridViewPCIRange.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Address,
this.Value});
this.dataGridViewPCIRange.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewPCIRange.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
this.dataGridViewPCIRange.GridColor = System.Drawing.SystemColors.ControlLight;
this.dataGridViewPCIRange.Location = new System.Drawing.Point(0, 0);
this.dataGridViewPCIRange.Name = "dataGridViewPCIRange";
this.dataGridViewPCIRange.ReadOnly = true;
this.dataGridViewPCIRange.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
this.dataGridViewPCIRange.RowHeadersVisible = false;
this.dataGridViewPCIRange.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
this.dataGridViewPCIRange.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dataGridViewPCIRange.ShowCellToolTips = false;
this.dataGridViewPCIRange.ShowEditingIcon = false;
this.dataGridViewPCIRange.ShowRowErrors = false;
this.dataGridViewPCIRange.Size = new System.Drawing.Size(278, 490);
this.dataGridViewPCIRange.TabIndex = 1;
//
// Address
//
this.Address.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
this.Address.DataPropertyName = "Address";
this.Address.HeaderText = "Address";
this.Address.Name = "Address";
this.Address.ReadOnly = true;
this.Address.Resizable = System.Windows.Forms.DataGridViewTriState.False;
this.Address.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.Address.Width = 51;
//
// Value
//
this.Value.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Value.DataPropertyName = "Value";
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
this.Value.DefaultCellStyle = dataGridViewCellStyle2;
this.Value.HeaderText = "Value";
this.Value.Name = "Value";
this.Value.ReadOnly = true;
this.Value.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
//
// PCIRangeMonitor
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(278, 490);
this.Controls.Add(this.dataGridViewPCIRange);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "PCIRangeMonitor";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "PCIRangeMonitor";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.PCIRangeMonitor_FormClosing);
this.Shown += new System.EventHandler(this.PCIRangeMonitor_Shown);
((System.ComponentModel.ISupportInitialize)(this.dataGridViewPCIRange)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridView dataGridViewPCIRange;
private System.Windows.Forms.DataGridViewTextBoxColumn Address;
private System.Windows.Forms.DataGridViewTextBoxColumn Value;
}
}