-
Notifications
You must be signed in to change notification settings - Fork 0
/
WindowMain.Designer.cs
126 lines (119 loc) · 6.04 KB
/
WindowMain.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
namespace AtividadeAvaliativa
{
partial class WindowMain
{
/// <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.mnuPrincipal = new System.Windows.Forms.MenuStrip();
this.arquivoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.sairToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.cadastroToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pedidoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.relatórioToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.produtosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.mnuPrincipal.SuspendLayout();
this.SuspendLayout();
//
// mnuPrincipal
//
this.mnuPrincipal.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.arquivoToolStripMenuItem,
this.cadastroToolStripMenuItem,
this.relatórioToolStripMenuItem});
this.mnuPrincipal.Location = new System.Drawing.Point(0, 0);
this.mnuPrincipal.Name = "mnuPrincipal";
this.mnuPrincipal.Size = new System.Drawing.Size(800, 24);
this.mnuPrincipal.TabIndex = 0;
this.mnuPrincipal.Text = "menuStrip1";
//
// arquivoToolStripMenuItem
//
this.arquivoToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.sairToolStripMenuItem});
this.arquivoToolStripMenuItem.Name = "arquivoToolStripMenuItem";
this.arquivoToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
this.arquivoToolStripMenuItem.Text = "Arquivo";
//
// sairToolStripMenuItem
//
this.sairToolStripMenuItem.Name = "sairToolStripMenuItem";
this.sairToolStripMenuItem.Size = new System.Drawing.Size(93, 22);
this.sairToolStripMenuItem.Text = "Sair";
this.sairToolStripMenuItem.Click += new System.EventHandler(this.sairToolStripMenuItem_Click);
//
// cadastroToolStripMenuItem
//
this.cadastroToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.pedidoToolStripMenuItem});
this.cadastroToolStripMenuItem.Name = "cadastroToolStripMenuItem";
this.cadastroToolStripMenuItem.Size = new System.Drawing.Size(66, 20);
this.cadastroToolStripMenuItem.Text = "Cadastro";
//
// pedidoToolStripMenuItem
//
this.pedidoToolStripMenuItem.Name = "pedidoToolStripMenuItem";
this.pedidoToolStripMenuItem.Size = new System.Drawing.Size(111, 22);
this.pedidoToolStripMenuItem.Text = "Pedido";
this.pedidoToolStripMenuItem.Click += new System.EventHandler(this.pedidoToolStripMenuItem_Click);
//
// relatórioToolStripMenuItem
//
this.relatórioToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.produtosToolStripMenuItem});
this.relatórioToolStripMenuItem.Name = "relatórioToolStripMenuItem";
this.relatórioToolStripMenuItem.Size = new System.Drawing.Size(66, 20);
this.relatórioToolStripMenuItem.Text = "Relatório";
//
// produtosToolStripMenuItem
//
this.produtosToolStripMenuItem.Name = "produtosToolStripMenuItem";
this.produtosToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
this.produtosToolStripMenuItem.Text = "Produtos";
this.produtosToolStripMenuItem.Click += new System.EventHandler(this.produtosToolStripMenuItem_Click);
//
// WindowMain
//
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.mnuPrincipal);
this.IsMdiContainer = true;
this.MainMenuStrip = this.mnuPrincipal;
this.Name = "WindowMain";
this.Text = "Gestão de Pedidos";
this.mnuPrincipal.ResumeLayout(false);
this.mnuPrincipal.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip mnuPrincipal;
private System.Windows.Forms.ToolStripMenuItem arquivoToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem sairToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem cadastroToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem pedidoToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem relatórioToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem produtosToolStripMenuItem;
}
}