-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProductForm.Designer.cs
106 lines (100 loc) · 4.37 KB
/
ProductForm.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
namespace WindowsFormsApp2
{
partial class ProductForm
{
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
this.gridProducts = new System.Windows.Forms.DataGridView();
this.btnList = new System.Windows.Forms.Button();
this.btnInfo = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.gridProducts)).BeginInit();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.btnInfo);
this.groupBox1.Controls.Add(this.btnList);
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
this.groupBox1.Location = new System.Drawing.Point(0, 0);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(800, 100);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Reports";
//
// gridProducts
//
this.gridProducts.AllowUserToAddRows = false;
this.gridProducts.AllowUserToDeleteRows = false;
this.gridProducts.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.gridProducts.Dock = System.Windows.Forms.DockStyle.Fill;
this.gridProducts.Location = new System.Drawing.Point(0, 100);
this.gridProducts.Name = "gridProducts";
this.gridProducts.ReadOnly = true;
this.gridProducts.Size = new System.Drawing.Size(800, 350);
this.gridProducts.TabIndex = 1;
//
// btnList
//
this.btnList.Location = new System.Drawing.Point(165, 31);
this.btnList.Name = "btnList";
this.btnList.Size = new System.Drawing.Size(82, 36);
this.btnList.TabIndex = 0;
this.btnList.Text = "Product List Report";
this.btnList.UseVisualStyleBackColor = true;
this.btnList.Click += new System.EventHandler(this.btnList_Click);
//
// btnInfo
//
this.btnInfo.Location = new System.Drawing.Point(284, 31);
this.btnInfo.Name = "btnInfo";
this.btnInfo.Size = new System.Drawing.Size(82, 36);
this.btnInfo.TabIndex = 0;
this.btnInfo.Text = "Product Info Report";
this.btnInfo.UseVisualStyleBackColor = true;
this.btnInfo.Click += new System.EventHandler(this.btnInfo_Click);
//
// ProductForm
//
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.gridProducts);
this.Controls.Add(this.groupBox1);
this.Name = "ProductForm";
this.Text = "Product Form";
this.Load += new System.EventHandler(this.ProductForm_Load);
this.groupBox1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.gridProducts)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.DataGridView gridProducts;
private System.Windows.Forms.Button btnInfo;
private System.Windows.Forms.Button btnList;
}
}