Form1.Designer.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. namespace CarApp
  2. {
  3. partial class Form1
  4. {
  5. private System.ComponentModel.IContainer components = null;
  6. protected override void Dispose(bool disposing)
  7. {
  8. if (disposing && (components != null))
  9. components.Dispose();
  10. base.Dispose(disposing);
  11. }
  12. private void InitializeComponent()
  13. {
  14. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  15. this.button1 = new System.Windows.Forms.Button();
  16. this.button2 = new System.Windows.Forms.Button();
  17. this.button3 = new System.Windows.Forms.Button();
  18. this.button4 = new System.Windows.Forms.Button();
  19. this.button5 = new System.Windows.Forms.Button();
  20. this.textBox1 = new System.Windows.Forms.TextBox();
  21. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  22. this.SuspendLayout();
  23. //
  24. // dataGridView1
  25. //
  26. this.dataGridView1.BackgroundColor = System.Drawing.Color.LightBlue;
  27. this.dataGridView1.ColumnHeadersHeight = 34;
  28. this.dataGridView1.Location = new System.Drawing.Point(12, 60);
  29. this.dataGridView1.Name = "dataGridView1";
  30. this.dataGridView1.RowHeadersWidth = 62;
  31. this.dataGridView1.Size = new System.Drawing.Size(650, 350);
  32. this.dataGridView1.TabIndex = 0;
  33. //
  34. // button1
  35. //
  36. this.button1.BackColor = System.Drawing.Color.LightCyan;
  37. this.button1.Location = new System.Drawing.Point(12, 12);
  38. this.button1.Name = "button1";
  39. this.button1.Size = new System.Drawing.Size(90, 30);
  40. this.button1.TabIndex = 5;
  41. this.button1.Text = "Загрузить";
  42. this.button1.UseVisualStyleBackColor = false;
  43. this.button1.Click += new System.EventHandler(this.button1_Click);
  44. //
  45. // button2
  46. //
  47. this.button2.BackColor = System.Drawing.Color.LightCyan;
  48. this.button2.Location = new System.Drawing.Point(110, 12);
  49. this.button2.Name = "button2";
  50. this.button2.Size = new System.Drawing.Size(90, 30);
  51. this.button2.TabIndex = 4;
  52. this.button2.Text = "Поиск";
  53. this.button2.UseVisualStyleBackColor = false;
  54. this.button2.Click += new System.EventHandler(this.button2_Click);
  55. //
  56. // button3
  57. //
  58. this.button3.BackColor = System.Drawing.Color.LightCyan;
  59. this.button3.Location = new System.Drawing.Point(210, 12);
  60. this.button3.Name = "button3";
  61. this.button3.Size = new System.Drawing.Size(90, 30);
  62. this.button3.TabIndex = 3;
  63. this.button3.Text = "Экспорт";
  64. this.button3.UseVisualStyleBackColor = false;
  65. this.button3.Click += new System.EventHandler(this.button3_Click);
  66. //
  67. // button4
  68. //
  69. this.button4.BackColor = System.Drawing.Color.LightCyan;
  70. this.button4.Location = new System.Drawing.Point(310, 12);
  71. this.button4.Name = "button4";
  72. this.button4.Size = new System.Drawing.Size(90, 30);
  73. this.button4.TabIndex = 2;
  74. this.button4.Text = "Добавить";
  75. this.button4.UseVisualStyleBackColor = false;
  76. this.button4.Click += new System.EventHandler(this.button4_Click);
  77. //
  78. // button5
  79. //
  80. this.button5.BackColor = System.Drawing.Color.LightCyan;
  81. this.button5.Location = new System.Drawing.Point(410, 12);
  82. this.button5.Name = "button5";
  83. this.button5.Size = new System.Drawing.Size(90, 30);
  84. this.button5.TabIndex = 1;
  85. this.button5.Text = "Удалить";
  86. this.button5.UseVisualStyleBackColor = false;
  87. this.button5.Click += new System.EventHandler(this.button5_Click);
  88. //
  89. // textBox1
  90. //
  91. this.textBox1.Location = new System.Drawing.Point(512, 16);
  92. this.textBox1.Name = "textBox1";
  93. this.textBox1.Size = new System.Drawing.Size(150, 26);
  94. this.textBox1.TabIndex = 0;
  95. //
  96. // Form1
  97. //
  98. this.ClientSize = new System.Drawing.Size(684, 421);
  99. this.Controls.Add(this.textBox1);
  100. this.Controls.Add(this.button5);
  101. this.Controls.Add(this.button4);
  102. this.Controls.Add(this.button3);
  103. this.Controls.Add(this.button2);
  104. this.Controls.Add(this.button1);
  105. this.Controls.Add(this.dataGridView1);
  106. this.Name = "Form1";
  107. this.Text = "Автосалон";
  108. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  109. this.ResumeLayout(false);
  110. this.PerformLayout();
  111. }
  112. private System.Windows.Forms.DataGridView dataGridView1;
  113. private System.Windows.Forms.Button button1;
  114. private System.Windows.Forms.Button button2;
  115. private System.Windows.Forms.Button button3;
  116. private System.Windows.Forms.Button button4;
  117. private System.Windows.Forms.Button button5;
  118. private System.Windows.Forms.TextBox textBox1;
  119. }
  120. }