/Sale of cars/Sale of cars/CarForms/CarModelForm.Designer.cs

https://bitbucket.org/invincible_ghost/sale-of-cars · C# · 119 lines · 84 code · 6 blank · 29 comment · 3 complexity · a89efaed0305f2de1e90db5632741c1c MD5 · raw file

  1. namespace Sale_of_cars.CarForms
  2. {
  3. partial class CarModelForm
  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.dataGridView1 = new System.Windows.Forms.DataGridView();
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.button3 = new System.Windows.Forms.Button();
  31. this.textBox1 = new System.Windows.Forms.TextBox();
  32. this.comboBox1 = new System.Windows.Forms.ComboBox();
  33. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // dataGridView1
  37. //
  38. this.dataGridView1.AllowUserToAddRows = false;
  39. this.dataGridView1.AllowUserToDeleteRows = false;
  40. this.dataGridView1.AllowUserToResizeColumns = false;
  41. this.dataGridView1.AllowUserToResizeRows = false;
  42. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  43. this.dataGridView1.Location = new System.Drawing.Point(1, 1);
  44. this.dataGridView1.Name = "dataGridView1";
  45. this.dataGridView1.ReadOnly = true;
  46. this.dataGridView1.RowHeadersVisible = false;
  47. this.dataGridView1.Size = new System.Drawing.Size(240, 259);
  48. this.dataGridView1.TabIndex = 0;
  49. this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
  50. //
  51. // button1
  52. //
  53. this.button1.Location = new System.Drawing.Point(1, 292);
  54. this.button1.Name = "button1";
  55. this.button1.Size = new System.Drawing.Size(76, 23);
  56. this.button1.TabIndex = 1;
  57. this.button1.Text = "Зберегти";
  58. this.button1.UseVisualStyleBackColor = true;
  59. this.button1.Click += new System.EventHandler(this.button1_Click);
  60. //
  61. // button3
  62. //
  63. this.button3.Location = new System.Drawing.Point(165, 292);
  64. this.button3.Name = "button3";
  65. this.button3.Size = new System.Drawing.Size(76, 23);
  66. this.button3.TabIndex = 3;
  67. this.button3.Text = "Редагувати";
  68. this.button3.UseVisualStyleBackColor = true;
  69. this.button3.Click += new System.EventHandler(this.button3_Click);
  70. //
  71. // textBox1
  72. //
  73. this.textBox1.Location = new System.Drawing.Point(1, 266);
  74. this.textBox1.Name = "textBox1";
  75. this.textBox1.Size = new System.Drawing.Size(122, 20);
  76. this.textBox1.TabIndex = 4;
  77. //
  78. // comboBox1
  79. //
  80. this.comboBox1.FormattingEnabled = true;
  81. this.comboBox1.Location = new System.Drawing.Point(129, 266);
  82. this.comboBox1.Name = "comboBox1";
  83. this.comboBox1.Size = new System.Drawing.Size(112, 21);
  84. this.comboBox1.TabIndex = 5;
  85. //
  86. // CarModelForm
  87. //
  88. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  89. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  90. this.ClientSize = new System.Drawing.Size(243, 316);
  91. this.Controls.Add(this.comboBox1);
  92. this.Controls.Add(this.textBox1);
  93. this.Controls.Add(this.button3);
  94. this.Controls.Add(this.button1);
  95. this.Controls.Add(this.dataGridView1);
  96. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
  97. this.Name = "CarModelForm";
  98. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  99. this.Text = "Моделі";
  100. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.CarModelForm_FormClosed);
  101. this.Load += new System.EventHandler(this.CarModelForm_Load);
  102. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  103. this.ResumeLayout(false);
  104. this.PerformLayout();
  105. }
  106. #endregion
  107. private System.Windows.Forms.DataGridView dataGridView1;
  108. private System.Windows.Forms.Button button1;
  109. private System.Windows.Forms.Button button3;
  110. private System.Windows.Forms.TextBox textBox1;
  111. private System.Windows.Forms.ComboBox comboBox1;
  112. }
  113. }