FormZakazchik.Designer.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. namespace СУБД_Швейная_фабрика
  2. {
  3. partial class FormZakazchik
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormZakazchik));
  30. this.BtnAddZakaz = new System.Windows.Forms.Button();
  31. this.DgvZakaz = new System.Windows.Forms.DataGridView();
  32. this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  33. this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  34. this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  35. this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36. this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.BtnLev = new System.Windows.Forms.Button();
  39. this.BtnProfile = new System.Windows.Forms.Button();
  40. this.NameLabel = new System.Windows.Forms.Label();
  41. this.FamLabel = new System.Windows.Forms.Label();
  42. this.label1 = new System.Windows.Forms.Label();
  43. this.OtchLabel = new System.Windows.Forms.Label();
  44. this.panel1 = new System.Windows.Forms.Panel();
  45. this.svFabricDataSet = new СУБД_Швейная_фабрика.SvFabricDataSet();
  46. this.usersBindingSource = new System.Windows.Forms.BindingSource(this.components);
  47. this.usersTableAdapter = new СУБД_Швейная_фабрика.SvFabricDataSetTableAdapters.UsersTableAdapter();
  48. this.tableAdapterManager = new СУБД_Швейная_фабрика.SvFabricDataSetTableAdapters.TableAdapterManager();
  49. this.LblIdUser = new System.Windows.Forms.Label();
  50. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  51. ((System.ComponentModel.ISupportInitialize)(this.DgvZakaz)).BeginInit();
  52. this.panel1.SuspendLayout();
  53. ((System.ComponentModel.ISupportInitialize)(this.svFabricDataSet)).BeginInit();
  54. ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).BeginInit();
  55. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  56. this.SuspendLayout();
  57. //
  58. // BtnAddZakaz
  59. //
  60. this.BtnAddZakaz.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(156)))), ((int)(((byte)(26)))));
  61. this.BtnAddZakaz.Location = new System.Drawing.Point(406, 130);
  62. this.BtnAddZakaz.Margin = new System.Windows.Forms.Padding(2);
  63. this.BtnAddZakaz.Name = "BtnAddZakaz";
  64. this.BtnAddZakaz.Size = new System.Drawing.Size(154, 23);
  65. this.BtnAddZakaz.TabIndex = 21;
  66. this.BtnAddZakaz.Text = "Добавить заказ";
  67. this.BtnAddZakaz.UseVisualStyleBackColor = false;
  68. this.BtnAddZakaz.Click += new System.EventHandler(this.BtnAddZakaz_Click);
  69. //
  70. // DgvZakaz
  71. //
  72. this.DgvZakaz.AllowUserToAddRows = false;
  73. this.DgvZakaz.AllowUserToDeleteRows = false;
  74. this.DgvZakaz.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  75. this.DgvZakaz.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  76. this.Column1,
  77. this.Column2,
  78. this.Column3,
  79. this.Column4,
  80. this.Column5,
  81. this.Column6});
  82. this.DgvZakaz.Location = new System.Drawing.Point(9, 189);
  83. this.DgvZakaz.Margin = new System.Windows.Forms.Padding(2);
  84. this.DgvZakaz.Name = "DgvZakaz";
  85. this.DgvZakaz.ReadOnly = true;
  86. this.DgvZakaz.RowHeadersVisible = false;
  87. this.DgvZakaz.RowTemplate.Height = 24;
  88. this.DgvZakaz.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  89. this.DgvZakaz.Size = new System.Drawing.Size(664, 242);
  90. this.DgvZakaz.TabIndex = 19;
  91. //
  92. // Column1
  93. //
  94. this.Column1.HeaderText = "Изделие";
  95. this.Column1.Name = "Column1";
  96. this.Column1.ReadOnly = true;
  97. //
  98. // Column2
  99. //
  100. this.Column2.HeaderText = "Кол-во изделий";
  101. this.Column2.Name = "Column2";
  102. this.Column2.ReadOnly = true;
  103. //
  104. // Column3
  105. //
  106. this.Column3.HeaderText = "Ткань";
  107. this.Column3.Name = "Column3";
  108. this.Column3.ReadOnly = true;
  109. //
  110. // Column4
  111. //
  112. this.Column4.HeaderText = "Фурнитура";
  113. this.Column4.Name = "Column4";
  114. this.Column4.ReadOnly = true;
  115. //
  116. // Column5
  117. //
  118. this.Column5.HeaderText = "Кол-во фурнитуры";
  119. this.Column5.Name = "Column5";
  120. this.Column5.ReadOnly = true;
  121. //
  122. // Column6
  123. //
  124. this.Column6.HeaderText = "Менеджер";
  125. this.Column6.Name = "Column6";
  126. this.Column6.ReadOnly = true;
  127. //
  128. // BtnLev
  129. //
  130. this.BtnLev.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(156)))), ((int)(((byte)(26)))));
  131. this.BtnLev.Location = new System.Drawing.Point(248, 130);
  132. this.BtnLev.Margin = new System.Windows.Forms.Padding(2);
  133. this.BtnLev.Name = "BtnLev";
  134. this.BtnLev.Size = new System.Drawing.Size(154, 23);
  135. this.BtnLev.TabIndex = 20;
  136. this.BtnLev.Text = "Нечеткий поиск";
  137. this.BtnLev.UseVisualStyleBackColor = false;
  138. this.BtnLev.Click += new System.EventHandler(this.BtnLev_Click);
  139. //
  140. // BtnProfile
  141. //
  142. this.BtnProfile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(156)))), ((int)(((byte)(26)))));
  143. this.BtnProfile.Location = new System.Drawing.Point(88, 130);
  144. this.BtnProfile.Margin = new System.Windows.Forms.Padding(2);
  145. this.BtnProfile.Name = "BtnProfile";
  146. this.BtnProfile.Size = new System.Drawing.Size(154, 23);
  147. this.BtnProfile.TabIndex = 18;
  148. this.BtnProfile.Text = "Профиль пользователя";
  149. this.BtnProfile.UseVisualStyleBackColor = false;
  150. this.BtnProfile.Click += new System.EventHandler(this.BtnProfile_Click);
  151. //
  152. // NameLabel
  153. //
  154. this.NameLabel.Location = new System.Drawing.Point(9, 149);
  155. this.NameLabel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  156. this.NameLabel.Name = "NameLabel";
  157. this.NameLabel.Size = new System.Drawing.Size(75, 19);
  158. this.NameLabel.TabIndex = 16;
  159. this.NameLabel.Text = "label2";
  160. //
  161. // FamLabel
  162. //
  163. this.FamLabel.Location = new System.Drawing.Point(9, 130);
  164. this.FamLabel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  165. this.FamLabel.Name = "FamLabel";
  166. this.FamLabel.Size = new System.Drawing.Size(75, 19);
  167. this.FamLabel.TabIndex = 15;
  168. this.FamLabel.Text = "label2";
  169. //
  170. // label1
  171. //
  172. this.label1.AutoSize = true;
  173. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  174. this.label1.Location = new System.Drawing.Point(196, 31);
  175. this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  176. this.label1.Name = "label1";
  177. this.label1.Size = new System.Drawing.Size(240, 24);
  178. this.label1.TabIndex = 1;
  179. this.label1.Text = "Рабочее место заказчика";
  180. //
  181. // OtchLabel
  182. //
  183. this.OtchLabel.Location = new System.Drawing.Point(11, 168);
  184. this.OtchLabel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  185. this.OtchLabel.Name = "OtchLabel";
  186. this.OtchLabel.Size = new System.Drawing.Size(75, 19);
  187. this.OtchLabel.TabIndex = 17;
  188. this.OtchLabel.Text = "label2";
  189. //
  190. // panel1
  191. //
  192. this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(225)))));
  193. this.panel1.Controls.Add(this.LblIdUser);
  194. this.panel1.Controls.Add(this.label1);
  195. this.panel1.Controls.Add(this.pictureBox1);
  196. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  197. this.panel1.Location = new System.Drawing.Point(0, 0);
  198. this.panel1.Margin = new System.Windows.Forms.Padding(2);
  199. this.panel1.Name = "panel1";
  200. this.panel1.Size = new System.Drawing.Size(689, 106);
  201. this.panel1.TabIndex = 14;
  202. //
  203. // svFabricDataSet
  204. //
  205. this.svFabricDataSet.DataSetName = "SvFabricDataSet";
  206. this.svFabricDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
  207. //
  208. // usersBindingSource
  209. //
  210. this.usersBindingSource.DataMember = "Users";
  211. this.usersBindingSource.DataSource = this.svFabricDataSet;
  212. //
  213. // usersTableAdapter
  214. //
  215. this.usersTableAdapter.ClearBeforeFill = true;
  216. //
  217. // tableAdapterManager
  218. //
  219. this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
  220. this.tableAdapterManager.ClothessTableAdapter = null;
  221. this.tableAdapterManager.ColorsTableAdapter = null;
  222. this.tableAdapterManager.FurnituresTableAdapter = null;
  223. this.tableAdapterManager.IzdelieTableAdapter = null;
  224. this.tableAdapterManager.OrdersTableAdapter = null;
  225. this.tableAdapterManager.RolesTableAdapter = null;
  226. this.tableAdapterManager.UpdateOrder = СУБД_Швейная_фабрика.SvFabricDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
  227. this.tableAdapterManager.UsersTableAdapter = this.usersTableAdapter;
  228. //
  229. // LblIdUser
  230. //
  231. this.LblIdUser.AutoSize = true;
  232. this.LblIdUser.Location = new System.Drawing.Point(498, 9);
  233. this.LblIdUser.Name = "LblIdUser";
  234. this.LblIdUser.Size = new System.Drawing.Size(13, 13);
  235. this.LblIdUser.TabIndex = 2;
  236. this.LblIdUser.Text = "1";
  237. //
  238. // pictureBox1
  239. //
  240. this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Left;
  241. this.pictureBox1.Image = global::СУБД_Швейная_фабрика.Properties.Resources.fabric_logo1;
  242. this.pictureBox1.Location = new System.Drawing.Point(0, 0);
  243. this.pictureBox1.Margin = new System.Windows.Forms.Padding(2);
  244. this.pictureBox1.Name = "pictureBox1";
  245. this.pictureBox1.Size = new System.Drawing.Size(100, 106);
  246. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  247. this.pictureBox1.TabIndex = 0;
  248. this.pictureBox1.TabStop = false;
  249. //
  250. // FormZakazchik
  251. //
  252. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  253. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  254. this.ClientSize = new System.Drawing.Size(689, 451);
  255. this.Controls.Add(this.BtnAddZakaz);
  256. this.Controls.Add(this.DgvZakaz);
  257. this.Controls.Add(this.BtnLev);
  258. this.Controls.Add(this.BtnProfile);
  259. this.Controls.Add(this.NameLabel);
  260. this.Controls.Add(this.FamLabel);
  261. this.Controls.Add(this.OtchLabel);
  262. this.Controls.Add(this.panel1);
  263. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  264. this.Name = "FormZakazchik";
  265. this.Text = "Заказчик";
  266. this.Load += new System.EventHandler(this.FormZakazchik_Load);
  267. ((System.ComponentModel.ISupportInitialize)(this.DgvZakaz)).EndInit();
  268. this.panel1.ResumeLayout(false);
  269. this.panel1.PerformLayout();
  270. ((System.ComponentModel.ISupportInitialize)(this.svFabricDataSet)).EndInit();
  271. ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).EndInit();
  272. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  273. this.ResumeLayout(false);
  274. }
  275. #endregion
  276. private System.Windows.Forms.Button BtnAddZakaz;
  277. private System.Windows.Forms.DataGridView DgvZakaz;
  278. private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
  279. private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
  280. private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
  281. private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
  282. private System.Windows.Forms.DataGridViewTextBoxColumn Column5;
  283. private System.Windows.Forms.DataGridViewTextBoxColumn Column6;
  284. private System.Windows.Forms.Button BtnLev;
  285. private System.Windows.Forms.Button BtnProfile;
  286. private System.Windows.Forms.Label NameLabel;
  287. private System.Windows.Forms.Label FamLabel;
  288. private System.Windows.Forms.Label label1;
  289. private System.Windows.Forms.Label OtchLabel;
  290. private System.Windows.Forms.Panel panel1;
  291. private System.Windows.Forms.PictureBox pictureBox1;
  292. private SvFabricDataSet svFabricDataSet;
  293. private SvFabricDataSetTableAdapters.UsersTableAdapter usersTableAdapter;
  294. private SvFabricDataSetTableAdapters.TableAdapterManager tableAdapterManager;
  295. public System.Windows.Forms.BindingSource usersBindingSource;
  296. public System.Windows.Forms.Label LblIdUser;
  297. }
  298. }