-
Notifications
You must be signed in to change notification settings - Fork 1
/
FrmProductSearch.Designer.cs
159 lines (153 loc) · 7.46 KB
/
FrmProductSearch.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
namespace BaharNarenjERP
{
partial class FrmProductSearch
{
/// <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.TxtPrCode = new System.Windows.Forms.TextBox();
this.LblPrName = new System.Windows.Forms.Label();
this.LblPrCode = new System.Windows.Forms.Label();
this.TxtPrName = new System.Windows.Forms.TextBox();
this.panel1 = new System.Windows.Forms.Panel();
this.DgvProducts = new System.Windows.Forms.DataGridView();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.StLblInfo = new System.Windows.Forms.ToolStripStatusLabel();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.DgvProducts)).BeginInit();
this.statusStrip1.SuspendLayout();
this.SuspendLayout();
//
// TxtPrCode
//
this.TxtPrCode.Location = new System.Drawing.Point(12, 31);
this.TxtPrCode.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.TxtPrCode.Name = "TxtPrCode";
this.TxtPrCode.Size = new System.Drawing.Size(128, 26);
this.TxtPrCode.TabIndex = 104;
this.TxtPrCode.TextChanged += new System.EventHandler(this.TxtPrCode_TextChanged);
this.TxtPrCode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmProductSearch_KeyDown);
//
// LblPrName
//
this.LblPrName.AutoSize = true;
this.LblPrName.Location = new System.Drawing.Point(143, 9);
this.LblPrName.Name = "LblPrName";
this.LblPrName.Size = new System.Drawing.Size(44, 18);
this.LblPrName.TabIndex = 105;
this.LblPrName.Text = "نام کالا :";
//
// LblPrCode
//
this.LblPrCode.AutoSize = true;
this.LblPrCode.Location = new System.Drawing.Point(12, 9);
this.LblPrCode.Name = "LblPrCode";
this.LblPrCode.Size = new System.Drawing.Size(43, 18);
this.LblPrCode.TabIndex = 106;
this.LblPrCode.Text = "کد کالا :";
//
// TxtPrName
//
this.TxtPrName.Location = new System.Drawing.Point(146, 31);
this.TxtPrName.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.TxtPrName.Name = "TxtPrName";
this.TxtPrName.Size = new System.Drawing.Size(214, 26);
this.TxtPrName.TabIndex = 104;
this.TxtPrName.TextChanged += new System.EventHandler(this.TxtPrName_TextChanged);
this.TxtPrName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmProductSearch_KeyDown);
//
// panel1
//
this.panel1.Controls.Add(this.DgvProducts);
this.panel1.Location = new System.Drawing.Point(12, 64);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(348, 262);
this.panel1.TabIndex = 107;
//
// DgvProducts
//
this.DgvProducts.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.DgvProducts.Dock = System.Windows.Forms.DockStyle.Fill;
this.DgvProducts.Location = new System.Drawing.Point(0, 0);
this.DgvProducts.Name = "DgvProducts";
this.DgvProducts.Size = new System.Drawing.Size(348, 262);
this.DgvProducts.TabIndex = 0;
this.DgvProducts.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DgvProducts_CellDoubleClick);
this.DgvProducts.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmProductSearch_KeyDown);
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.StLblInfo});
this.statusStrip1.Location = new System.Drawing.Point(0, 330);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(372, 22);
this.statusStrip1.TabIndex = 108;
this.statusStrip1.Text = "statusStrip1";
//
// StLblInfo
//
this.StLblInfo.Name = "StLblInfo";
this.StLblInfo.Size = new System.Drawing.Size(16, 17);
this.StLblInfo.Text = "...";
//
// FrmProductSearch
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 18F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(372, 352);
this.ControlBox = false;
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.panel1);
this.Controls.Add(this.TxtPrName);
this.Controls.Add(this.TxtPrCode);
this.Controls.Add(this.LblPrName);
this.Controls.Add(this.LblPrCode);
this.Font = new System.Drawing.Font("B Yekan", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.Name = "FrmProductSearch";
this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.RightToLeftLayout = true;
this.ShowIcon = false;
this.Text = "جستجوی کالا";
this.Load += new System.EventHandler(this.FrmProductSearch_Load);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmProductSearch_KeyDown);
this.panel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.DgvProducts)).EndInit();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox TxtPrCode;
private System.Windows.Forms.Label LblPrName;
private System.Windows.Forms.Label LblPrCode;
private System.Windows.Forms.TextBox TxtPrName;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.DataGridView DgvProducts;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripStatusLabel StLblInfo;
}
}