-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.Designer.cs
87 lines (80 loc) · 3.19 KB
/
Form1.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
namespace MaquinasParalelas
{
partial class Form1
{
/// <summary>
/// Variável de designer necessária.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Limpar os recursos que estão sendo usados.
/// </summary>
/// <param name="disposing">true se for necessário descartar os recursos gerenciados; caso contrário, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Código gerado pelo Windows Form Designer
/// <summary>
/// Método necessário para suporte ao Designer - não modifique
/// o conteúdo deste método com o editor de código.
/// </summary>
private void InitializeComponent()
{
this.txt_caminho = new System.Windows.Forms.TextBox();
this.cmd_calcular = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// txt_caminho
//
this.txt_caminho.Location = new System.Drawing.Point(2, 30);
this.txt_caminho.Name = "txt_caminho";
this.txt_caminho.Size = new System.Drawing.Size(705, 20);
this.txt_caminho.TabIndex = 0;
this.txt_caminho.Text = "C:\\Users\\User\\Documents\\Mestrado\\Instances_UPMS\\Instances_UPMS\\Inst_small\\I_010_0" +
"2_S_1-009_01.txt";
//
// cmd_calcular
//
this.cmd_calcular.Location = new System.Drawing.Point(713, 28);
this.cmd_calcular.Name = "cmd_calcular";
this.cmd_calcular.Size = new System.Drawing.Size(75, 23);
this.cmd_calcular.TabIndex = 1;
this.cmd_calcular.Text = "Calcular";
this.cmd_calcular.UseVisualStyleBackColor = true;
this.cmd_calcular.Click += new System.EventHandler(this.cmd_calcular_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(2, 13);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(48, 13);
this.label1.TabIndex = 2;
this.label1.Text = "Caminho";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.label1);
this.Controls.Add(this.cmd_calcular);
this.Controls.Add(this.txt_caminho);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txt_caminho;
private System.Windows.Forms.Button cmd_calcular;
private System.Windows.Forms.Label label1;
}
}