CreateOrder.Designer.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. namespace Perevozki
  2. {
  3. partial class CreateOrder
  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.Windows.Forms.Label iDSotrLabel;
  30. System.Windows.Forms.Label statusLabel;
  31. System.Windows.Forms.Label dateNachalaLabel;
  32. System.Windows.Forms.Label dateOkonchaniaLabel;
  33. System.Windows.Forms.Label iDOrderLabel1;
  34. this.button1 = new System.Windows.Forms.Button();
  35. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  36. this.iDOrderDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.iDSotrDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.statusDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  39. this.dateNachalaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. this.dateOkonchaniaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  41. this.ordersBindingSource = new System.Windows.Forms.BindingSource(this.components);
  42. this.perevozkiBDDataSet = new Perevozki.PerevozkiBDDataSet();
  43. this.ordersTableAdapter = new Perevozki.PerevozkiBDDataSetTableAdapters.OrdersTableAdapter();
  44. this.tableAdapterManager = new Perevozki.PerevozkiBDDataSetTableAdapters.TableAdapterManager();
  45. this.iDSotrTextBox = new System.Windows.Forms.TextBox();
  46. this.statusTextBox = new System.Windows.Forms.TextBox();
  47. this.dateNachalaDateTimePicker = new System.Windows.Forms.DateTimePicker();
  48. this.dateOkonchaniaDateTimePicker = new System.Windows.Forms.DateTimePicker();
  49. this.iDOrderTextBox = new System.Windows.Forms.TextBox();
  50. this.button2 = new System.Windows.Forms.Button();
  51. iDSotrLabel = new System.Windows.Forms.Label();
  52. statusLabel = new System.Windows.Forms.Label();
  53. dateNachalaLabel = new System.Windows.Forms.Label();
  54. dateOkonchaniaLabel = new System.Windows.Forms.Label();
  55. iDOrderLabel1 = new System.Windows.Forms.Label();
  56. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  57. ((System.ComponentModel.ISupportInitialize)(this.ordersBindingSource)).BeginInit();
  58. ((System.ComponentModel.ISupportInitialize)(this.perevozkiBDDataSet)).BeginInit();
  59. this.SuspendLayout();
  60. //
  61. // button1
  62. //
  63. this.button1.Location = new System.Drawing.Point(387, 305);
  64. this.button1.Margin = new System.Windows.Forms.Padding(5);
  65. this.button1.Name = "button1";
  66. this.button1.Size = new System.Drawing.Size(248, 51);
  67. this.button1.TabIndex = 4;
  68. this.button1.Text = "создать заказ";
  69. this.button1.UseVisualStyleBackColor = true;
  70. this.button1.Click += new System.EventHandler(this.button1_Click);
  71. //
  72. // dataGridView1
  73. //
  74. this.dataGridView1.AllowUserToAddRows = false;
  75. this.dataGridView1.AutoGenerateColumns = false;
  76. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  77. this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  78. this.iDOrderDataGridViewTextBoxColumn,
  79. this.iDSotrDataGridViewTextBoxColumn,
  80. this.statusDataGridViewTextBoxColumn,
  81. this.dateNachalaDataGridViewTextBoxColumn,
  82. this.dateOkonchaniaDataGridViewTextBoxColumn});
  83. this.dataGridView1.DataSource = this.ordersBindingSource;
  84. this.dataGridView1.Location = new System.Drawing.Point(2, 14);
  85. this.dataGridView1.Margin = new System.Windows.Forms.Padding(5);
  86. this.dataGridView1.Name = "dataGridView1";
  87. this.dataGridView1.Size = new System.Drawing.Size(633, 281);
  88. this.dataGridView1.TabIndex = 3;
  89. //
  90. // iDOrderDataGridViewTextBoxColumn
  91. //
  92. this.iDOrderDataGridViewTextBoxColumn.DataPropertyName = "IDOrder";
  93. this.iDOrderDataGridViewTextBoxColumn.HeaderText = "IDOrder";
  94. this.iDOrderDataGridViewTextBoxColumn.Name = "iDOrderDataGridViewTextBoxColumn";
  95. //
  96. // iDSotrDataGridViewTextBoxColumn
  97. //
  98. this.iDSotrDataGridViewTextBoxColumn.DataPropertyName = "IDSotr";
  99. this.iDSotrDataGridViewTextBoxColumn.HeaderText = "IDSotr";
  100. this.iDSotrDataGridViewTextBoxColumn.Name = "iDSotrDataGridViewTextBoxColumn";
  101. //
  102. // statusDataGridViewTextBoxColumn
  103. //
  104. this.statusDataGridViewTextBoxColumn.DataPropertyName = "Status";
  105. this.statusDataGridViewTextBoxColumn.HeaderText = "Status";
  106. this.statusDataGridViewTextBoxColumn.Name = "statusDataGridViewTextBoxColumn";
  107. //
  108. // dateNachalaDataGridViewTextBoxColumn
  109. //
  110. this.dateNachalaDataGridViewTextBoxColumn.DataPropertyName = "DateNachala";
  111. this.dateNachalaDataGridViewTextBoxColumn.HeaderText = "DateNachala";
  112. this.dateNachalaDataGridViewTextBoxColumn.Name = "dateNachalaDataGridViewTextBoxColumn";
  113. //
  114. // dateOkonchaniaDataGridViewTextBoxColumn
  115. //
  116. this.dateOkonchaniaDataGridViewTextBoxColumn.DataPropertyName = "DateOkonchania";
  117. this.dateOkonchaniaDataGridViewTextBoxColumn.HeaderText = "DateOkonchania";
  118. this.dateOkonchaniaDataGridViewTextBoxColumn.Name = "dateOkonchaniaDataGridViewTextBoxColumn";
  119. //
  120. // ordersBindingSource
  121. //
  122. this.ordersBindingSource.DataMember = "Orders";
  123. this.ordersBindingSource.DataSource = this.perevozkiBDDataSet;
  124. //
  125. // perevozkiBDDataSet
  126. //
  127. this.perevozkiBDDataSet.DataSetName = "PerevozkiBDDataSet";
  128. this.perevozkiBDDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
  129. //
  130. // ordersTableAdapter
  131. //
  132. this.ordersTableAdapter.ClearBeforeFill = true;
  133. //
  134. // tableAdapterManager
  135. //
  136. this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
  137. this.tableAdapterManager.OrdersTableAdapter = this.ordersTableAdapter;
  138. this.tableAdapterManager.PolzovateliTableAdapter = null;
  139. this.tableAdapterManager.SmeniTableAdapter = null;
  140. this.tableAdapterManager.SotrudnikiTableAdapter = null;
  141. this.tableAdapterManager.UpdateOrder = Perevozki.PerevozkiBDDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
  142. //
  143. // iDSotrLabel
  144. //
  145. iDSotrLabel.AutoSize = true;
  146. iDSotrLabel.Location = new System.Drawing.Point(12, 346);
  147. iDSotrLabel.Name = "iDSotrLabel";
  148. iDSotrLabel.Size = new System.Drawing.Size(70, 23);
  149. iDSotrLabel.TabIndex = 6;
  150. iDSotrLabel.Text = "IDSotr:";
  151. //
  152. // iDSotrTextBox
  153. //
  154. this.iDSotrTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.ordersBindingSource, "IDSotr", true));
  155. this.iDSotrTextBox.Location = new System.Drawing.Point(156, 343);
  156. this.iDSotrTextBox.Name = "iDSotrTextBox";
  157. this.iDSotrTextBox.Size = new System.Drawing.Size(200, 30);
  158. this.iDSotrTextBox.TabIndex = 7;
  159. //
  160. // statusLabel
  161. //
  162. statusLabel.AutoSize = true;
  163. statusLabel.Location = new System.Drawing.Point(12, 382);
  164. statusLabel.Name = "statusLabel";
  165. statusLabel.Size = new System.Drawing.Size(63, 23);
  166. statusLabel.TabIndex = 8;
  167. statusLabel.Text = "Status:";
  168. //
  169. // statusTextBox
  170. //
  171. this.statusTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.ordersBindingSource, "Status", true));
  172. this.statusTextBox.Location = new System.Drawing.Point(156, 379);
  173. this.statusTextBox.Name = "statusTextBox";
  174. this.statusTextBox.Size = new System.Drawing.Size(200, 30);
  175. this.statusTextBox.TabIndex = 9;
  176. //
  177. // dateNachalaLabel
  178. //
  179. dateNachalaLabel.AutoSize = true;
  180. dateNachalaLabel.Location = new System.Drawing.Point(12, 419);
  181. dateNachalaLabel.Name = "dateNachalaLabel";
  182. dateNachalaLabel.Size = new System.Drawing.Size(113, 23);
  183. dateNachalaLabel.TabIndex = 10;
  184. dateNachalaLabel.Text = "Date Nachala:";
  185. //
  186. // dateNachalaDateTimePicker
  187. //
  188. this.dateNachalaDateTimePicker.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.ordersBindingSource, "DateNachala", true));
  189. this.dateNachalaDateTimePicker.Location = new System.Drawing.Point(156, 415);
  190. this.dateNachalaDateTimePicker.Name = "dateNachalaDateTimePicker";
  191. this.dateNachalaDateTimePicker.Size = new System.Drawing.Size(200, 30);
  192. this.dateNachalaDateTimePicker.TabIndex = 11;
  193. //
  194. // dateOkonchaniaLabel
  195. //
  196. dateOkonchaniaLabel.AutoSize = true;
  197. dateOkonchaniaLabel.Location = new System.Drawing.Point(12, 455);
  198. dateOkonchaniaLabel.Name = "dateOkonchaniaLabel";
  199. dateOkonchaniaLabel.Size = new System.Drawing.Size(138, 23);
  200. dateOkonchaniaLabel.TabIndex = 12;
  201. dateOkonchaniaLabel.Text = "Date Okonchania:";
  202. //
  203. // dateOkonchaniaDateTimePicker
  204. //
  205. this.dateOkonchaniaDateTimePicker.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.ordersBindingSource, "DateOkonchania", true));
  206. this.dateOkonchaniaDateTimePicker.Location = new System.Drawing.Point(156, 451);
  207. this.dateOkonchaniaDateTimePicker.Name = "dateOkonchaniaDateTimePicker";
  208. this.dateOkonchaniaDateTimePicker.Size = new System.Drawing.Size(200, 30);
  209. this.dateOkonchaniaDateTimePicker.TabIndex = 13;
  210. //
  211. // iDOrderLabel1
  212. //
  213. iDOrderLabel1.AutoSize = true;
  214. iDOrderLabel1.Location = new System.Drawing.Point(12, 307);
  215. iDOrderLabel1.Name = "iDOrderLabel1";
  216. iDOrderLabel1.Size = new System.Drawing.Size(82, 23);
  217. iDOrderLabel1.TabIndex = 13;
  218. iDOrderLabel1.Text = "IDOrder:";
  219. //
  220. // iDOrderTextBox
  221. //
  222. this.iDOrderTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.ordersBindingSource, "IDOrder", true));
  223. this.iDOrderTextBox.Location = new System.Drawing.Point(156, 307);
  224. this.iDOrderTextBox.Name = "iDOrderTextBox";
  225. this.iDOrderTextBox.Size = new System.Drawing.Size(200, 30);
  226. this.iDOrderTextBox.TabIndex = 14;
  227. //
  228. // button2
  229. //
  230. this.button2.Location = new System.Drawing.Point(378, 391);
  231. this.button2.Margin = new System.Windows.Forms.Padding(5);
  232. this.button2.Name = "button2";
  233. this.button2.Size = new System.Drawing.Size(248, 51);
  234. this.button2.TabIndex = 15;
  235. this.button2.Text = "создать заказ";
  236. this.button2.UseVisualStyleBackColor = true;
  237. this.button2.Click += new System.EventHandler(this.button2_Click);
  238. //
  239. // CreateOrder
  240. //
  241. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 23F);
  242. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  243. this.ClientSize = new System.Drawing.Size(680, 552);
  244. this.Controls.Add(this.button2);
  245. this.Controls.Add(iDOrderLabel1);
  246. this.Controls.Add(this.iDOrderTextBox);
  247. this.Controls.Add(iDSotrLabel);
  248. this.Controls.Add(this.iDSotrTextBox);
  249. this.Controls.Add(statusLabel);
  250. this.Controls.Add(this.statusTextBox);
  251. this.Controls.Add(dateNachalaLabel);
  252. this.Controls.Add(this.dateNachalaDateTimePicker);
  253. this.Controls.Add(dateOkonchaniaLabel);
  254. this.Controls.Add(this.dateOkonchaniaDateTimePicker);
  255. this.Controls.Add(this.button1);
  256. this.Controls.Add(this.dataGridView1);
  257. this.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  258. this.Margin = new System.Windows.Forms.Padding(5);
  259. this.Name = "CreateOrder";
  260. this.Text = "CreateOrder";
  261. this.Load += new System.EventHandler(this.CreateOrder_Load);
  262. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  263. ((System.ComponentModel.ISupportInitialize)(this.ordersBindingSource)).EndInit();
  264. ((System.ComponentModel.ISupportInitialize)(this.perevozkiBDDataSet)).EndInit();
  265. this.ResumeLayout(false);
  266. this.PerformLayout();
  267. }
  268. #endregion
  269. private System.Windows.Forms.Button button1;
  270. private System.Windows.Forms.DataGridView dataGridView1;
  271. private PerevozkiBDDataSet perevozkiBDDataSet;
  272. private System.Windows.Forms.BindingSource ordersBindingSource;
  273. private PerevozkiBDDataSetTableAdapters.OrdersTableAdapter ordersTableAdapter;
  274. private System.Windows.Forms.DataGridViewTextBoxColumn iDOrderDataGridViewTextBoxColumn;
  275. private System.Windows.Forms.DataGridViewTextBoxColumn iDSotrDataGridViewTextBoxColumn;
  276. private System.Windows.Forms.DataGridViewTextBoxColumn statusDataGridViewTextBoxColumn;
  277. private System.Windows.Forms.DataGridViewTextBoxColumn dateNachalaDataGridViewTextBoxColumn;
  278. private System.Windows.Forms.DataGridViewTextBoxColumn dateOkonchaniaDataGridViewTextBoxColumn;
  279. private PerevozkiBDDataSetTableAdapters.TableAdapterManager tableAdapterManager;
  280. public System.Windows.Forms.TextBox iDOrderTextBox;
  281. public System.Windows.Forms.TextBox iDSotrTextBox;
  282. public System.Windows.Forms.TextBox statusTextBox;
  283. public System.Windows.Forms.DateTimePicker dateNachalaDateTimePicker;
  284. public System.Windows.Forms.DateTimePicker dateOkonchaniaDateTimePicker;
  285. private System.Windows.Forms.Button button2;
  286. }
  287. }