SortingVehicle.Designer.cs 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. 
  2. namespace Transportation
  3. {
  4. partial class SortingVehicle
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.VehiclesSortingDGV = new System.Windows.Forms.DataGridView();
  30. ((System.ComponentModel.ISupportInitialize)(this.VehiclesSortingDGV)).BeginInit();
  31. this.SuspendLayout();
  32. //
  33. // VehiclesSortingDGV
  34. //
  35. this.VehiclesSortingDGV.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  36. this.VehiclesSortingDGV.Dock = System.Windows.Forms.DockStyle.Left;
  37. this.VehiclesSortingDGV.Location = new System.Drawing.Point(0, 0);
  38. this.VehiclesSortingDGV.Name = "VehiclesSortingDGV";
  39. this.VehiclesSortingDGV.RowHeadersWidth = 51;
  40. this.VehiclesSortingDGV.RowTemplate.Height = 24;
  41. this.VehiclesSortingDGV.Size = new System.Drawing.Size(1402, 627);
  42. this.VehiclesSortingDGV.TabIndex = 2;
  43. this.VehiclesSortingDGV.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.VehiclesSortingDGV_CellContentClick);
  44. //
  45. // SortingVehicle
  46. //
  47. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  48. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  49. this.ClientSize = new System.Drawing.Size(1402, 627);
  50. this.Controls.Add(this.VehiclesSortingDGV);
  51. this.MaximizeBox = false;
  52. this.MaximumSize = new System.Drawing.Size(1420, 674);
  53. this.MinimizeBox = false;
  54. this.MinimumSize = new System.Drawing.Size(1420, 674);
  55. this.Name = "SortingVehicle";
  56. this.Text = "Сортировка";
  57. this.Load += new System.EventHandler(this.SortingVehicle_Load);
  58. ((System.ComponentModel.ISupportInitialize)(this.VehiclesSortingDGV)).EndInit();
  59. this.ResumeLayout(false);
  60. }
  61. #endregion
  62. private System.Windows.Forms.DataGridView VehiclesSortingDGV;
  63. }
  64. }