Orders.Designer.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. namespace Perevozki
  2. {
  3. partial class Orders
  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(Orders));
  30. this.ordersBindingSource = new System.Windows.Forms.BindingSource(this.components);
  31. this.perevozkiBDDataSetBindingSource = new System.Windows.Forms.BindingSource(this.components);
  32. this.perevozkiBDDataSet = new Perevozki.PerevozkiBDDataSet();
  33. this.ordersTableAdapter = new Perevozki.PerevozkiBDDataSetTableAdapters.OrdersTableAdapter();
  34. this.button1 = new System.Windows.Forms.Button();
  35. this.tableAdapterManager = new Perevozki.PerevozkiBDDataSetTableAdapters.TableAdapterManager();
  36. this.ordersBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
  37. this.ordersDataGridView = new System.Windows.Forms.DataGridView();
  38. this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  39. this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  41. this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  42. this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  43. this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
  44. this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
  45. this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
  46. this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
  47. this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
  48. this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  49. this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
  50. this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
  51. this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
  52. this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
  53. this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
  54. this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
  55. ((System.ComponentModel.ISupportInitialize)(this.ordersBindingSource)).BeginInit();
  56. ((System.ComponentModel.ISupportInitialize)(this.perevozkiBDDataSetBindingSource)).BeginInit();
  57. ((System.ComponentModel.ISupportInitialize)(this.perevozkiBDDataSet)).BeginInit();
  58. ((System.ComponentModel.ISupportInitialize)(this.ordersBindingSource1)).BeginInit();
  59. ((System.ComponentModel.ISupportInitialize)(this.ordersDataGridView)).BeginInit();
  60. ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
  61. this.bindingNavigator1.SuspendLayout();
  62. this.SuspendLayout();
  63. //
  64. // ordersBindingSource
  65. //
  66. this.ordersBindingSource.DataMember = "Orders";
  67. this.ordersBindingSource.DataSource = this.perevozkiBDDataSetBindingSource;
  68. //
  69. // perevozkiBDDataSetBindingSource
  70. //
  71. this.perevozkiBDDataSetBindingSource.DataSource = this.perevozkiBDDataSet;
  72. this.perevozkiBDDataSetBindingSource.Position = 0;
  73. //
  74. // perevozkiBDDataSet
  75. //
  76. this.perevozkiBDDataSet.DataSetName = "PerevozkiBDDataSet";
  77. this.perevozkiBDDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
  78. //
  79. // ordersTableAdapter
  80. //
  81. this.ordersTableAdapter.ClearBeforeFill = true;
  82. //
  83. // button1
  84. //
  85. this.button1.Location = new System.Drawing.Point(12, 259);
  86. this.button1.Name = "button1";
  87. this.button1.Size = new System.Drawing.Size(158, 29);
  88. this.button1.TabIndex = 1;
  89. this.button1.Text = "изменить статус";
  90. this.button1.UseVisualStyleBackColor = true;
  91. this.button1.Click += new System.EventHandler(this.button1_Click);
  92. //
  93. // tableAdapterManager
  94. //
  95. this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
  96. this.tableAdapterManager.OrdersTableAdapter = this.ordersTableAdapter;
  97. this.tableAdapterManager.PolzovateliTableAdapter = null;
  98. this.tableAdapterManager.SmeniTableAdapter = null;
  99. this.tableAdapterManager.SotrudnikiTableAdapter = null;
  100. this.tableAdapterManager.UpdateOrder = Perevozki.PerevozkiBDDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
  101. //
  102. // ordersBindingSource1
  103. //
  104. this.ordersBindingSource1.DataMember = "Orders";
  105. this.ordersBindingSource1.DataSource = this.perevozkiBDDataSet;
  106. //
  107. // ordersDataGridView
  108. //
  109. this.ordersDataGridView.AutoGenerateColumns = false;
  110. this.ordersDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  111. this.ordersDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  112. this.dataGridViewTextBoxColumn1,
  113. this.dataGridViewTextBoxColumn2,
  114. this.dataGridViewTextBoxColumn3,
  115. this.dataGridViewTextBoxColumn4,
  116. this.dataGridViewTextBoxColumn5});
  117. this.ordersDataGridView.DataSource = this.ordersBindingSource1;
  118. this.ordersDataGridView.Location = new System.Drawing.Point(12, 30);
  119. this.ordersDataGridView.Name = "ordersDataGridView";
  120. this.ordersDataGridView.Size = new System.Drawing.Size(564, 220);
  121. this.ordersDataGridView.TabIndex = 5;
  122. //
  123. // dataGridViewTextBoxColumn1
  124. //
  125. this.dataGridViewTextBoxColumn1.DataPropertyName = "IDOrder";
  126. this.dataGridViewTextBoxColumn1.HeaderText = "IDOrder";
  127. this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
  128. //
  129. // dataGridViewTextBoxColumn2
  130. //
  131. this.dataGridViewTextBoxColumn2.DataPropertyName = "IDSotr";
  132. this.dataGridViewTextBoxColumn2.HeaderText = "IDSotr";
  133. this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
  134. //
  135. // dataGridViewTextBoxColumn3
  136. //
  137. this.dataGridViewTextBoxColumn3.DataPropertyName = "Status";
  138. this.dataGridViewTextBoxColumn3.HeaderText = "Status";
  139. this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
  140. //
  141. // dataGridViewTextBoxColumn4
  142. //
  143. this.dataGridViewTextBoxColumn4.DataPropertyName = "DateNachala";
  144. this.dataGridViewTextBoxColumn4.HeaderText = "DateNachala";
  145. this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
  146. //
  147. // dataGridViewTextBoxColumn5
  148. //
  149. this.dataGridViewTextBoxColumn5.DataPropertyName = "DateOkonchania";
  150. this.dataGridViewTextBoxColumn5.HeaderText = "DateOkonchania";
  151. this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
  152. //
  153. // bindingNavigatorMoveFirstItem
  154. //
  155. this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  156. this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
  157. this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
  158. this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
  159. this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
  160. this.bindingNavigatorMoveFirstItem.Text = "Переместить в начало";
  161. //
  162. // bindingNavigatorMovePreviousItem
  163. //
  164. this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  165. this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
  166. this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
  167. this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
  168. this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
  169. this.bindingNavigatorMovePreviousItem.Text = "Переместить назад";
  170. //
  171. // bindingNavigatorSeparator
  172. //
  173. this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
  174. this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
  175. //
  176. // bindingNavigatorPositionItem
  177. //
  178. this.bindingNavigatorPositionItem.AccessibleName = "Положение";
  179. this.bindingNavigatorPositionItem.AutoSize = false;
  180. this.bindingNavigatorPositionItem.Font = new System.Drawing.Font("Segoe UI", 9F);
  181. this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
  182. this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
  183. this.bindingNavigatorPositionItem.Text = "0";
  184. this.bindingNavigatorPositionItem.ToolTipText = "Текущее положение";
  185. //
  186. // bindingNavigatorCountItem
  187. //
  188. this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
  189. this.bindingNavigatorCountItem.Size = new System.Drawing.Size(43, 22);
  190. this.bindingNavigatorCountItem.Text = "для {0}";
  191. this.bindingNavigatorCountItem.ToolTipText = "Общее число элементов";
  192. //
  193. // bindingNavigatorSeparator1
  194. //
  195. this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
  196. this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
  197. //
  198. // bindingNavigatorMoveNextItem
  199. //
  200. this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  201. this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
  202. this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
  203. this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
  204. this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
  205. this.bindingNavigatorMoveNextItem.Text = "Переместить вперед";
  206. this.bindingNavigatorMoveNextItem.Click += new System.EventHandler(this.bindingNavigatorMoveNextItem_Click);
  207. //
  208. // bindingNavigatorMoveLastItem
  209. //
  210. this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  211. this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
  212. this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
  213. this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
  214. this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
  215. this.bindingNavigatorMoveLastItem.Text = "Переместить в конец";
  216. //
  217. // bindingNavigatorSeparator2
  218. //
  219. this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
  220. this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
  221. //
  222. // bindingNavigatorAddNewItem
  223. //
  224. this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  225. this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
  226. this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
  227. this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
  228. this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
  229. this.bindingNavigatorAddNewItem.Text = "Добавить";
  230. //
  231. // bindingNavigatorDeleteItem
  232. //
  233. this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  234. this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
  235. this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
  236. this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
  237. this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
  238. this.bindingNavigatorDeleteItem.Text = "Удалить";
  239. //
  240. // bindingNavigator1
  241. //
  242. this.bindingNavigator1.AddNewItem = this.bindingNavigatorAddNewItem;
  243. this.bindingNavigator1.BindingSource = this.ordersBindingSource1;
  244. this.bindingNavigator1.CountItem = this.bindingNavigatorCountItem;
  245. this.bindingNavigator1.DeleteItem = this.bindingNavigatorDeleteItem;
  246. this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  247. this.bindingNavigatorMoveFirstItem,
  248. this.bindingNavigatorMovePreviousItem,
  249. this.bindingNavigatorSeparator,
  250. this.bindingNavigatorPositionItem,
  251. this.bindingNavigatorCountItem,
  252. this.bindingNavigatorSeparator1,
  253. this.bindingNavigatorMoveNextItem,
  254. this.bindingNavigatorMoveLastItem,
  255. this.bindingNavigatorSeparator2,
  256. this.bindingNavigatorAddNewItem,
  257. this.bindingNavigatorDeleteItem});
  258. this.bindingNavigator1.Location = new System.Drawing.Point(0, 0);
  259. this.bindingNavigator1.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
  260. this.bindingNavigator1.MoveLastItem = this.bindingNavigatorMoveLastItem;
  261. this.bindingNavigator1.MoveNextItem = this.bindingNavigatorMoveNextItem;
  262. this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
  263. this.bindingNavigator1.Name = "bindingNavigator1";
  264. this.bindingNavigator1.PositionItem = this.bindingNavigatorPositionItem;
  265. this.bindingNavigator1.Size = new System.Drawing.Size(690, 25);
  266. this.bindingNavigator1.TabIndex = 4;
  267. this.bindingNavigator1.Text = "bindingNavigator1";
  268. //
  269. // Orders
  270. //
  271. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 23F);
  272. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  273. this.ClientSize = new System.Drawing.Size(690, 357);
  274. this.Controls.Add(this.ordersDataGridView);
  275. this.Controls.Add(this.bindingNavigator1);
  276. this.Controls.Add(this.button1);
  277. this.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  278. this.Margin = new System.Windows.Forms.Padding(5);
  279. this.Name = "Orders";
  280. this.Text = "Orders";
  281. this.Load += new System.EventHandler(this.Voditel_Load);
  282. ((System.ComponentModel.ISupportInitialize)(this.ordersBindingSource)).EndInit();
  283. ((System.ComponentModel.ISupportInitialize)(this.perevozkiBDDataSetBindingSource)).EndInit();
  284. ((System.ComponentModel.ISupportInitialize)(this.perevozkiBDDataSet)).EndInit();
  285. ((System.ComponentModel.ISupportInitialize)(this.ordersBindingSource1)).EndInit();
  286. ((System.ComponentModel.ISupportInitialize)(this.ordersDataGridView)).EndInit();
  287. ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
  288. this.bindingNavigator1.ResumeLayout(false);
  289. this.bindingNavigator1.PerformLayout();
  290. this.ResumeLayout(false);
  291. this.PerformLayout();
  292. }
  293. #endregion
  294. private System.Windows.Forms.BindingSource perevozkiBDDataSetBindingSource;
  295. private PerevozkiBDDataSet perevozkiBDDataSet;
  296. private System.Windows.Forms.BindingSource ordersBindingSource;
  297. private PerevozkiBDDataSetTableAdapters.OrdersTableAdapter ordersTableAdapter;
  298. private System.Windows.Forms.Button button1;
  299. private PerevozkiBDDataSetTableAdapters.TableAdapterManager tableAdapterManager;
  300. private System.Windows.Forms.BindingSource ordersBindingSource1;
  301. private System.Windows.Forms.DataGridView ordersDataGridView;
  302. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
  303. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
  304. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
  305. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
  306. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
  307. private System.Windows.Forms.ToolStripButton bindingNavigatorMoveFirstItem;
  308. private System.Windows.Forms.ToolStripButton bindingNavigatorMovePreviousItem;
  309. private System.Windows.Forms.ToolStripSeparator bindingNavigatorSeparator;
  310. private System.Windows.Forms.ToolStripTextBox bindingNavigatorPositionItem;
  311. private System.Windows.Forms.ToolStripLabel bindingNavigatorCountItem;
  312. private System.Windows.Forms.ToolStripSeparator bindingNavigatorSeparator1;
  313. private System.Windows.Forms.ToolStripButton bindingNavigatorMoveNextItem;
  314. private System.Windows.Forms.ToolStripButton bindingNavigatorMoveLastItem;
  315. private System.Windows.Forms.ToolStripSeparator bindingNavigatorSeparator2;
  316. private System.Windows.Forms.ToolStripButton bindingNavigatorAddNewItem;
  317. private System.Windows.Forms.ToolStripButton bindingNavigatorDeleteItem;
  318. private System.Windows.Forms.BindingNavigator bindingNavigator1;
  319. }
  320. }