-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm5.Designer.cs
145 lines (140 loc) · 6.17 KB
/
Form5.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
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
namespace Project
{
partial class VerLista
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(VerLista));
this.Remov = new System.Windows.Forms.Button();
this.Voltar = new System.Windows.Forms.Button();
this.Lista = new System.Windows.Forms.DataGridView();
this.VoltarAçao = new System.Windows.Forms.Button();
this.aviso = new System.Windows.Forms.TextBox();
this.Print = new System.Windows.Forms.Button();
this.OBS = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.Lista)).BeginInit();
this.SuspendLayout();
//
// Remov
//
this.Remov.Location = new System.Drawing.Point(190, 672);
this.Remov.Name = "Remov";
this.Remov.Size = new System.Drawing.Size(170, 85);
this.Remov.TabIndex = 1;
this.Remov.Text = "Remover";
this.Remov.UseVisualStyleBackColor = true;
this.Remov.Click += new System.EventHandler(this.Remov_Click);
//
// Voltar
//
this.Voltar.Location = new System.Drawing.Point(14, 671);
this.Voltar.Name = "Voltar";
this.Voltar.Size = new System.Drawing.Size(170, 85);
this.Voltar.TabIndex = 3;
this.Voltar.Text = "Voltar";
this.Voltar.UseVisualStyleBackColor = true;
this.Voltar.Click += new System.EventHandler(this.Voltar_Click);
//
// Lista
//
this.Lista.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.Lista.Location = new System.Drawing.Point(13, 13);
this.Lista.Name = "Lista";
this.Lista.RowHeadersWidth = 51;
this.Lista.Size = new System.Drawing.Size(982, 642);
this.Lista.TabIndex = 4;
this.Lista.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.Lista_CellContentClick);
//
// VoltarAçao
//
this.VoltarAçao.Location = new System.Drawing.Point(366, 672);
this.VoltarAçao.Name = "VoltarAçao";
this.VoltarAçao.Size = new System.Drawing.Size(170, 85);
this.VoltarAçao.TabIndex = 7;
this.VoltarAçao.Text = "Voltar remoção";
this.VoltarAçao.Click += new System.EventHandler(this.VoltarAçao_Click);
//
// aviso
//
this.aviso.BackColor = System.Drawing.Color.Red;
this.aviso.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.aviso.ForeColor = System.Drawing.Color.Black;
this.aviso.Location = new System.Drawing.Point(366, 271);
this.aviso.Multiline = true;
this.aviso.Name = "aviso";
this.aviso.ReadOnly = true;
this.aviso.Size = new System.Drawing.Size(454, 77);
this.aviso.TabIndex = 8;
//
// Print
//
this.Print.Location = new System.Drawing.Point(1032, 671);
this.Print.Name = "Print";
this.Print.Size = new System.Drawing.Size(170, 85);
this.Print.TabIndex = 9;
this.Print.Text = "Imprimir";
this.Print.Click += new System.EventHandler(this.Print_Click);
//
// OBS
//
this.OBS.Location = new System.Drawing.Point(1001, 175);
this.OBS.Name = "OBS";
this.OBS.Size = new System.Drawing.Size(201, 85);
this.OBS.TabIndex = 10;
this.OBS.Text = "Adcionar Observação";
this.OBS.Click += new System.EventHandler(this.OBS_Click);
//
// VerLista
//
this.AutoScaleDimensions = new System.Drawing.SizeF(14F, 35F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(1214, 768);
this.Controls.Add(this.OBS);
this.Controls.Add(this.Print);
this.Controls.Add(this.aviso);
this.Controls.Add(this.Lista);
this.Controls.Add(this.Voltar);
this.Controls.Add(this.VoltarAçao);
this.Controls.Add(this.Remov);
this.Font = new System.Drawing.Font("Nirmala UI Semilight", 15F);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(6);
this.Name = "VerLista";
this.Text = "Form5";
this.Load += new System.EventHandler(this.VerLista_Load);
((System.ComponentModel.ISupportInitialize)(this.Lista)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button Remov;
private System.Windows.Forms.Button Voltar;
private System.Windows.Forms.DataGridView Lista;
private System.Windows.Forms.Button VoltarAçao;
private System.Windows.Forms.TextBox aviso;
private System.Windows.Forms.Button Print;
private System.Windows.Forms.Button OBS;
}
}