forked from ispysoftware/iSpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConfigureObjectCount.Designer.cs
116 lines (110 loc) · 4.98 KB
/
ConfigureObjectCount.Designer.cs
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 iSpyApplication
{
partial class ConfigureObjectCount
{
/// <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()
{
this.numObjects = new System.Windows.Forms.NumericUpDown();
this.label48 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
((System.ComponentModel.ISupportInitialize)(this.numObjects)).BeginInit();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// numObjects
//
this.numObjects.Location = new System.Drawing.Point(50, 3);
this.numObjects.Maximum = new decimal(new int[] {
10000,
0,
0,
0});
this.numObjects.Name = "numObjects";
this.numObjects.Size = new System.Drawing.Size(50, 20);
this.numObjects.TabIndex = 77;
//
// label48
//
this.label48.AutoSize = true;
this.label48.Location = new System.Drawing.Point(3, 6);
this.label48.Margin = new System.Windows.Forms.Padding(3, 6, 3, 0);
this.label48.Name = "label48";
this.label48.Size = new System.Drawing.Size(41, 13);
this.label48.TabIndex = 76;
this.label48.Text = "objects";
//
// button1
//
this.button1.AutoSize = true;
this.button1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.button1.Location = new System.Drawing.Point(50, 29);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(32, 23);
this.button1.TabIndex = 78;
this.button1.Text = "OK";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.Button1Click);
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.Controls.Add(this.label48, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.numObjects, 1, 0);
this.tableLayoutPanel1.Controls.Add(this.button1, 1, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(6, 6);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.Size = new System.Drawing.Size(139, 59);
this.tableLayoutPanel1.TabIndex = 79;
//
// ConfigureObjectCount
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(151, 71);
this.Controls.Add(this.tableLayoutPanel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "ConfigureObjectCount";
this.Padding = new System.Windows.Forms.Padding(6);
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Configure";
this.Load += new System.EventHandler(this.ForSecondsLoad);
((System.ComponentModel.ISupportInitialize)(this.numObjects)).EndInit();
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.NumericUpDown numObjects;
private System.Windows.Forms.Label label48;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
}
}