1 |
namespace RomCheater.Docking |
2 |
{ |
3 |
partial class PIDSelector |
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 |
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PIDSelector)); |
32 |
this.lstProcessList = new System.Windows.Forms.ListView(); |
33 |
this.colProcName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); |
34 |
this.colProcPid = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); |
35 |
this.colProcFullPath = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); |
36 |
this.toolmnu = new System.Windows.Forms.ToolStrip(); |
37 |
this.btnLargeIcon = new System.Windows.Forms.ToolStripButton(); |
38 |
this.btnDetails = new System.Windows.Forms.ToolStripButton(); |
39 |
this.btnSmallIcon = new System.Windows.Forms.ToolStripButton(); |
40 |
this.btnList = new System.Windows.Forms.ToolStripButton(); |
41 |
this.btnTile = new System.Windows.Forms.ToolStripButton(); |
42 |
this.btnOK = new System.Windows.Forms.Button(); |
43 |
this.btnRefresh = new System.Windows.Forms.Button(); |
44 |
this.btn_pnl = new System.Windows.Forms.Panel(); |
45 |
this.button_flow = new System.Windows.Forms.FlowLayoutPanel(); |
46 |
this.toolmnu.SuspendLayout(); |
47 |
this.btn_pnl.SuspendLayout(); |
48 |
this.button_flow.SuspendLayout(); |
49 |
this.SuspendLayout(); |
50 |
// |
51 |
// lstProcessList |
52 |
// |
53 |
this.lstProcessList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) |
54 |
| System.Windows.Forms.AnchorStyles.Left) |
55 |
| System.Windows.Forms.AnchorStyles.Right))); |
56 |
this.lstProcessList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { |
57 |
this.colProcName, |
58 |
this.colProcPid, |
59 |
this.colProcFullPath}); |
60 |
this.lstProcessList.FullRowSelect = true; |
61 |
this.lstProcessList.HideSelection = false; |
62 |
this.lstProcessList.Location = new System.Drawing.Point(0, 28); |
63 |
this.lstProcessList.MultiSelect = false; |
64 |
this.lstProcessList.Name = "lstProcessList"; |
65 |
this.lstProcessList.Size = new System.Drawing.Size(570, 458); |
66 |
this.lstProcessList.TabIndex = 0; |
67 |
this.lstProcessList.UseCompatibleStateImageBehavior = false; |
68 |
this.lstProcessList.ItemActivate += new System.EventHandler(this.lstProcessList_ItemActivate); |
69 |
this.lstProcessList.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.lstProcessList_ItemSelectionChanged); |
70 |
// |
71 |
// colProcName |
72 |
// |
73 |
this.colProcName.Text = "Process"; |
74 |
this.colProcName.Width = 74; |
75 |
// |
76 |
// colProcPid |
77 |
// |
78 |
this.colProcPid.Text = "Pid"; |
79 |
this.colProcPid.Width = 74; |
80 |
// |
81 |
// colProcFullPath |
82 |
// |
83 |
this.colProcFullPath.Text = "Full Path"; |
84 |
this.colProcFullPath.Width = 412; |
85 |
// |
86 |
// toolmnu |
87 |
// |
88 |
this.toolmnu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { |
89 |
this.btnLargeIcon, |
90 |
this.btnDetails, |
91 |
this.btnSmallIcon, |
92 |
this.btnList, |
93 |
this.btnTile}); |
94 |
this.toolmnu.Location = new System.Drawing.Point(0, 0); |
95 |
this.toolmnu.Name = "toolmnu"; |
96 |
this.toolmnu.Size = new System.Drawing.Size(570, 25); |
97 |
this.toolmnu.TabIndex = 1; |
98 |
this.toolmnu.Text = "toolStrip1"; |
99 |
// |
100 |
// btnLargeIcon |
101 |
// |
102 |
this.btnLargeIcon.Image = ((System.Drawing.Image)(resources.GetObject("btnLargeIcon.Image"))); |
103 |
this.btnLargeIcon.ImageTransparentColor = System.Drawing.Color.Magenta; |
104 |
this.btnLargeIcon.Name = "btnLargeIcon"; |
105 |
this.btnLargeIcon.Size = new System.Drawing.Size(79, 22); |
106 |
this.btnLargeIcon.Text = "LargeIcon"; |
107 |
this.btnLargeIcon.Click += new System.EventHandler(this.btnLargeIcon_Click); |
108 |
// |
109 |
// btnDetails |
110 |
// |
111 |
this.btnDetails.Image = ((System.Drawing.Image)(resources.GetObject("btnDetails.Image"))); |
112 |
this.btnDetails.ImageTransparentColor = System.Drawing.Color.Magenta; |
113 |
this.btnDetails.Name = "btnDetails"; |
114 |
this.btnDetails.Size = new System.Drawing.Size(62, 22); |
115 |
this.btnDetails.Text = "Details"; |
116 |
this.btnDetails.Click += new System.EventHandler(this.btnDetails_Click); |
117 |
// |
118 |
// btnSmallIcon |
119 |
// |
120 |
this.btnSmallIcon.Image = ((System.Drawing.Image)(resources.GetObject("btnSmallIcon.Image"))); |
121 |
this.btnSmallIcon.ImageTransparentColor = System.Drawing.Color.Magenta; |
122 |
this.btnSmallIcon.Name = "btnSmallIcon"; |
123 |
this.btnSmallIcon.Size = new System.Drawing.Size(79, 22); |
124 |
this.btnSmallIcon.Text = "SmallIcon"; |
125 |
this.btnSmallIcon.Click += new System.EventHandler(this.btnSmallIcon_Click); |
126 |
// |
127 |
// btnList |
128 |
// |
129 |
this.btnList.Image = ((System.Drawing.Image)(resources.GetObject("btnList.Image"))); |
130 |
this.btnList.ImageTransparentColor = System.Drawing.Color.Magenta; |
131 |
this.btnList.Name = "btnList"; |
132 |
this.btnList.Size = new System.Drawing.Size(45, 22); |
133 |
this.btnList.Text = "List"; |
134 |
this.btnList.Click += new System.EventHandler(this.btnList_Click); |
135 |
// |
136 |
// btnTile |
137 |
// |
138 |
this.btnTile.Image = ((System.Drawing.Image)(resources.GetObject("btnTile.Image"))); |
139 |
this.btnTile.ImageTransparentColor = System.Drawing.Color.Magenta; |
140 |
this.btnTile.Name = "btnTile"; |
141 |
this.btnTile.Size = new System.Drawing.Size(46, 22); |
142 |
this.btnTile.Text = "Tile"; |
143 |
this.btnTile.Click += new System.EventHandler(this.btnTile_Click); |
144 |
// |
145 |
// btnOK |
146 |
// |
147 |
this.btnOK.AutoSize = true; |
148 |
this.btnOK.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
149 |
this.btnOK.Enabled = false; |
150 |
this.btnOK.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
151 |
this.btnOK.Location = new System.Drawing.Point(3, 3); |
152 |
this.btnOK.Name = "btnOK"; |
153 |
this.btnOK.Size = new System.Drawing.Size(112, 30); |
154 |
this.btnOK.TabIndex = 2; |
155 |
this.btnOK.Text = "Use selected"; |
156 |
this.btnOK.UseVisualStyleBackColor = true; |
157 |
this.btnOK.Visible = false; |
158 |
this.btnOK.Click += new System.EventHandler(this.btnOK_Click); |
159 |
// |
160 |
// btnRefresh |
161 |
// |
162 |
this.btnRefresh.AutoSize = true; |
163 |
this.btnRefresh.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
164 |
this.btnRefresh.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
165 |
this.btnRefresh.Location = new System.Drawing.Point(121, 3); |
166 |
this.btnRefresh.Name = "btnRefresh"; |
167 |
this.btnRefresh.Size = new System.Drawing.Size(153, 30); |
168 |
this.btnRefresh.TabIndex = 4; |
169 |
this.btnRefresh.Text = "Refresh processes"; |
170 |
this.btnRefresh.UseVisualStyleBackColor = true; |
171 |
this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click); |
172 |
// |
173 |
// btn_pnl |
174 |
// |
175 |
this.btn_pnl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) |
176 |
| System.Windows.Forms.AnchorStyles.Right))); |
177 |
this.btn_pnl.Controls.Add(this.button_flow); |
178 |
this.btn_pnl.Location = new System.Drawing.Point(0, 492); |
179 |
this.btn_pnl.Name = "btn_pnl"; |
180 |
this.btn_pnl.Size = new System.Drawing.Size(570, 50); |
181 |
this.btn_pnl.TabIndex = 5; |
182 |
// |
183 |
// button_flow |
184 |
// |
185 |
this.button_flow.Controls.Add(this.btnOK); |
186 |
this.button_flow.Controls.Add(this.btnRefresh); |
187 |
this.button_flow.Dock = System.Windows.Forms.DockStyle.Fill; |
188 |
this.button_flow.Location = new System.Drawing.Point(0, 0); |
189 |
this.button_flow.Name = "button_flow"; |
190 |
this.button_flow.Size = new System.Drawing.Size(570, 50); |
191 |
this.button_flow.TabIndex = 5; |
192 |
// |
193 |
// PIDSelector |
194 |
// |
195 |
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
196 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
197 |
this.ClientSize = new System.Drawing.Size(570, 542); |
198 |
this.Controls.Add(this.btn_pnl); |
199 |
this.Controls.Add(this.toolmnu); |
200 |
this.Controls.Add(this.lstProcessList); |
201 |
this.DockAreas = ((WeifenLuo.WinFormsUI.Docking.DockAreas)(((WeifenLuo.WinFormsUI.Docking.DockAreas.Float | WeifenLuo.WinFormsUI.Docking.DockAreas.DockLeft) |
202 |
| WeifenLuo.WinFormsUI.Docking.DockAreas.DockRight))); |
203 |
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
204 |
this.Name = "PIDSelector"; |
205 |
this.Text = "Rom Cheater Process Selector"; |
206 |
this.Load += new System.EventHandler(this.PIDSelector_Load); |
207 |
this.toolmnu.ResumeLayout(false); |
208 |
this.toolmnu.PerformLayout(); |
209 |
this.btn_pnl.ResumeLayout(false); |
210 |
this.button_flow.ResumeLayout(false); |
211 |
this.button_flow.PerformLayout(); |
212 |
this.ResumeLayout(false); |
213 |
this.PerformLayout(); |
214 |
|
215 |
} |
216 |
|
217 |
#endregion |
218 |
|
219 |
private System.Windows.Forms.ListView lstProcessList; |
220 |
private System.Windows.Forms.ToolStrip toolmnu; |
221 |
private System.Windows.Forms.ToolStripButton btnLargeIcon; |
222 |
private System.Windows.Forms.ToolStripButton btnDetails; |
223 |
private System.Windows.Forms.ToolStripButton btnSmallIcon; |
224 |
private System.Windows.Forms.ToolStripButton btnList; |
225 |
private System.Windows.Forms.ToolStripButton btnTile; |
226 |
private System.Windows.Forms.Button btnOK; |
227 |
private System.Windows.Forms.Button btnRefresh; |
228 |
private System.Windows.Forms.Panel btn_pnl; |
229 |
private System.Windows.Forms.ColumnHeader colProcName; |
230 |
private System.Windows.Forms.ColumnHeader colProcPid; |
231 |
private System.Windows.Forms.ColumnHeader colProcFullPath; |
232 |
private System.Windows.Forms.FlowLayoutPanel button_flow; |
233 |
|
234 |
} |
235 |
} |