MyCaffe  1.12.2.41
Deep learning software for Windows C# programmers.
FormProperty.Designer.cs
1namespace MyCaffe.param.ui
2{
3 partial class FormProperty
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 this.components = new System.ComponentModel.Container();
32 this.lblName = new System.Windows.Forms.Label();
33 this.edtName = new System.Windows.Forms.TextBox();
34 this.lblValue = new System.Windows.Forms.Label();
35 this.edtValue = new System.Windows.Forms.TextBox();
36 this.btnOK = new System.Windows.Forms.Button();
37 this.btnCancel = new System.Windows.Forms.Button();
38 this.timerUI = new System.Windows.Forms.Timer(this.components);
39 this.SuspendLayout();
40 //
41 // lblName
42 //
43 this.lblName.AutoSize = true;
44 this.lblName.Location = new System.Drawing.Point(21, 21);
45 this.lblName.Name = "lblName";
46 this.lblName.Size = new System.Drawing.Size(38, 13);
47 this.lblName.TabIndex = 0;
48 this.lblName.Text = "Name:";
49 //
50 // edtName
51 //
52 this.edtName.Location = new System.Drawing.Point(65, 18);
53 this.edtName.Name = "edtName";
54 this.edtName.Size = new System.Drawing.Size(314, 20);
55 this.edtName.TabIndex = 1;
56 //
57 // lblValue
58 //
59 this.lblValue.AutoSize = true;
60 this.lblValue.Location = new System.Drawing.Point(22, 47);
61 this.lblValue.Name = "lblValue";
62 this.lblValue.Size = new System.Drawing.Size(37, 13);
63 this.lblValue.TabIndex = 2;
64 this.lblValue.Text = "Value:";
65 //
66 // edtValue
67 //
68 this.edtValue.Location = new System.Drawing.Point(65, 44);
69 this.edtValue.Name = "edtValue";
70 this.edtValue.Size = new System.Drawing.Size(314, 20);
71 this.edtValue.TabIndex = 3;
72 //
73 // btnOK
74 //
75 this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
76 this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
77 this.btnOK.Location = new System.Drawing.Point(223, 75);
78 this.btnOK.Name = "btnOK";
79 this.btnOK.Size = new System.Drawing.Size(75, 23);
80 this.btnOK.TabIndex = 4;
81 this.btnOK.Text = "OK";
82 this.btnOK.UseVisualStyleBackColor = true;
83 this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
84 //
85 // btnCancel
86 //
87 this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
88 this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
89 this.btnCancel.Location = new System.Drawing.Point(304, 75);
90 this.btnCancel.Name = "btnCancel";
91 this.btnCancel.Size = new System.Drawing.Size(75, 23);
92 this.btnCancel.TabIndex = 5;
93 this.btnCancel.Text = "Cancel";
94 this.btnCancel.UseVisualStyleBackColor = true;
95 //
96 // timerUI
97 //
98 this.timerUI.Enabled = true;
99 this.timerUI.Interval = 250;
100 this.timerUI.Tick += new System.EventHandler(this.timerUI_Tick);
101 //
102 // FormProperty
103 //
104 this.AcceptButton = this.btnOK;
105 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
106 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
107 this.CancelButton = this.btnCancel;
108 this.ClientSize = new System.Drawing.Size(391, 110);
109 this.Controls.Add(this.btnCancel);
110 this.Controls.Add(this.btnOK);
111 this.Controls.Add(this.edtValue);
112 this.Controls.Add(this.lblValue);
113 this.Controls.Add(this.edtName);
114 this.Controls.Add(this.lblName);
115 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
116 this.MaximizeBox = false;
117 this.MinimizeBox = false;
118 this.Name = "FormProperty";
119 this.ShowInTaskbar = false;
120 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
121 this.Text = "Edit Property";
122 this.Load += new System.EventHandler(this.FormProperty_Load);
123 this.ResumeLayout(false);
124 this.PerformLayout();
125
126 }
127
128 #endregion
129
130 private System.Windows.Forms.Label lblName;
131 private System.Windows.Forms.TextBox edtName;
132 private System.Windows.Forms.Label lblValue;
133 private System.Windows.Forms.TextBox edtValue;
134 private System.Windows.Forms.Button btnOK;
135 private System.Windows.Forms.Button btnCancel;
136 private System.Windows.Forms.Timer timerUI;
137 }
138}
override void Dispose(bool disposing)
Clean up any resources being used.