-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormClasificationMethod.Designer.cs
More file actions
153 lines (147 loc) · 6.48 KB
/
FormClasificationMethod.Designer.cs
File metadata and controls
153 lines (147 loc) · 6.48 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
namespace PBioManager
{
partial class FormClasificationMethod
{
/// <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.components = new System.ComponentModel.Container();
this.metodoClasificacionTableAdapter1 = new PBioManager.WebappDBDataSetTableAdapters.MetodoClasificacionTableAdapter();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.webappDBDataSet = new PBioManager.WebappDBDataSet();
this.txtName = new System.Windows.Forms.TextBox();
this.lblName = new System.Windows.Forms.Label();
this.lblArgs = new System.Windows.Forms.Label();
this.lblDescription = new System.Windows.Forms.Label();
this.txtArgs = new System.Windows.Forms.TextBox();
this.txtDescription = new System.Windows.Forms.TextBox();
this.btnSave = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.webappDBDataSet)).BeginInit();
this.SuspendLayout();
//
// metodoClasificacionTableAdapter1
//
this.metodoClasificacionTableAdapter1.ClearBeforeFill = true;
//
// bindingSource1
//
this.bindingSource1.DataSource = this.webappDBDataSet;
this.bindingSource1.Position = 0;
//
// webappDBDataSet
//
this.webappDBDataSet.DataSetName = "WebappDBDataSet";
this.webappDBDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// txtName
//
this.txtName.Location = new System.Drawing.Point(78, 5);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(183, 20);
this.txtName.TabIndex = 0;
//
// lblName
//
this.lblName.AutoSize = true;
this.lblName.Location = new System.Drawing.Point(12, 12);
this.lblName.Name = "lblName";
this.lblName.Size = new System.Drawing.Size(35, 13);
this.lblName.TabIndex = 1;
this.lblName.Text = "Name";
//
// lblArgs
//
this.lblArgs.AutoSize = true;
this.lblArgs.Location = new System.Drawing.Point(12, 38);
this.lblArgs.Name = "lblArgs";
this.lblArgs.Size = new System.Drawing.Size(28, 13);
this.lblArgs.TabIndex = 2;
this.lblArgs.Text = "Args";
//
// lblDescription
//
this.lblDescription.AutoSize = true;
this.lblDescription.Location = new System.Drawing.Point(12, 64);
this.lblDescription.Name = "lblDescription";
this.lblDescription.Size = new System.Drawing.Size(60, 13);
this.lblDescription.TabIndex = 3;
this.lblDescription.Text = "Description";
//
// txtArgs
//
this.txtArgs.Location = new System.Drawing.Point(78, 31);
this.txtArgs.Name = "txtArgs";
this.txtArgs.Size = new System.Drawing.Size(183, 20);
this.txtArgs.TabIndex = 4;
//
// txtDescription
//
this.txtDescription.Location = new System.Drawing.Point(78, 57);
this.txtDescription.Multiline = true;
this.txtDescription.Name = "txtDescription";
this.txtDescription.Size = new System.Drawing.Size(183, 67);
this.txtDescription.TabIndex = 5;
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(186, 130);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(75, 23);
this.btnSave.TabIndex = 6;
this.btnSave.Text = "Save";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// FormClasificationMethod
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(273, 165);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.txtDescription);
this.Controls.Add(this.txtArgs);
this.Controls.Add(this.lblDescription);
this.Controls.Add(this.lblArgs);
this.Controls.Add(this.lblName);
this.Controls.Add(this.txtName);
this.Name = "FormClasificationMethod";
this.Text = "Clasification Method";
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.webappDBDataSet)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.BindingSource bindingSource1;
private WebappDBDataSetTableAdapters.MetodoClasificacionTableAdapter metodoClasificacionTableAdapter1;
private WebappDBDataSet webappDBDataSet;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.Label lblName;
private System.Windows.Forms.Label lblArgs;
private System.Windows.Forms.Label lblDescription;
private System.Windows.Forms.TextBox txtArgs;
private System.Windows.Forms.TextBox txtDescription;
private System.Windows.Forms.Button btnSave;
}
}