Form1.Designer.cs 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. 
  2. namespace автопрокат
  3. {
  4. partial class Form1
  5. {
  6. /// <summary>
  7. /// Обязательная переменная конструктора.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Освободить все используемые ресурсы.
  12. /// </summary>
  13. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</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
  23. /// <summary>
  24. /// Требуемый метод для поддержки конструктора — не изменяйте
  25. /// содержимое этого метода с помощью редактора кода.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  31. this.imageList1 = new System.Windows.Forms.ImageList(this.components);
  32. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  33. this.panel1 = new System.Windows.Forms.Panel();
  34. this.button3 = new System.Windows.Forms.Button();
  35. this.button2 = new System.Windows.Forms.Button();
  36. this.button1 = new System.Windows.Forms.Button();
  37. this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
  38. this.textBox1 = new System.Windows.Forms.TextBox();
  39. this.button4 = new System.Windows.Forms.Button();
  40. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  41. this.panel1.SuspendLayout();
  42. this.SuspendLayout();
  43. //
  44. // imageList1
  45. //
  46. this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
  47. this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
  48. this.imageList1.Images.SetKeyName(0, "logo.png");
  49. //
  50. // pictureBox1
  51. //
  52. this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  53. this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  54. this.pictureBox1.Location = new System.Drawing.Point(-1, -2);
  55. this.pictureBox1.Name = "pictureBox1";
  56. this.pictureBox1.Size = new System.Drawing.Size(269, 97);
  57. this.pictureBox1.TabIndex = 0;
  58. this.pictureBox1.TabStop = false;
  59. this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
  60. //
  61. // panel1
  62. //
  63. this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(145)))), ((int)(((byte)(234)))));
  64. this.panel1.Controls.Add(this.button3);
  65. this.panel1.Controls.Add(this.button2);
  66. this.panel1.Controls.Add(this.button1);
  67. this.panel1.Location = new System.Drawing.Point(-1, 101);
  68. this.panel1.Name = "panel1";
  69. this.panel1.Size = new System.Drawing.Size(802, 350);
  70. this.panel1.TabIndex = 1;
  71. this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
  72. this.panel1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel1_MouseDown);
  73. this.panel1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel1_MouseMove);
  74. //
  75. // button3
  76. //
  77. this.button3.Cursor = System.Windows.Forms.Cursors.Hand;
  78. this.button3.Location = new System.Drawing.Point(236, 242);
  79. this.button3.Name = "button3";
  80. this.button3.Size = new System.Drawing.Size(310, 61);
  81. this.button3.TabIndex = 2;
  82. this.button3.Text = "Прокат";
  83. this.button3.UseVisualStyleBackColor = true;
  84. //
  85. // button2
  86. //
  87. this.button2.Cursor = System.Windows.Forms.Cursors.Hand;
  88. this.button2.Location = new System.Drawing.Point(236, 153);
  89. this.button2.Name = "button2";
  90. this.button2.Size = new System.Drawing.Size(310, 61);
  91. this.button2.TabIndex = 1;
  92. this.button2.Text = "Автомобиль";
  93. this.button2.UseVisualStyleBackColor = true;
  94. //
  95. // button1
  96. //
  97. this.button1.Cursor = System.Windows.Forms.Cursors.Hand;
  98. this.button1.Location = new System.Drawing.Point(236, 67);
  99. this.button1.Name = "button1";
  100. this.button1.Size = new System.Drawing.Size(310, 61);
  101. this.button1.TabIndex = 0;
  102. this.button1.Text = "Клиент";
  103. this.button1.UseVisualStyleBackColor = true;
  104. this.button1.Click += new System.EventHandler(this.button1_Click);
  105. //
  106. // contextMenuStrip1
  107. //
  108. this.contextMenuStrip1.Name = "contextMenuStrip1";
  109. this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
  110. this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
  111. //
  112. // textBox1
  113. //
  114. this.textBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(144)))), ((int)(((byte)(156)))));
  115. this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
  116. this.textBox1.Font = new System.Drawing.Font("Roboto Black", 24F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  117. this.textBox1.Location = new System.Drawing.Point(398, 56);
  118. this.textBox1.Name = "textBox1";
  119. this.textBox1.Size = new System.Drawing.Size(305, 39);
  120. this.textBox1.TabIndex = 3;
  121. this.textBox1.Text = "ГЛАВНОЕ МЕНЮ";
  122. this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  123. //
  124. // button4
  125. //
  126. this.button4.Cursor = System.Windows.Forms.Cursors.Hand;
  127. this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
  128. this.button4.ForeColor = System.Drawing.Color.Black;
  129. this.button4.Location = new System.Drawing.Point(722, 12);
  130. this.button4.Name = "button4";
  131. this.button4.Size = new System.Drawing.Size(66, 21);
  132. this.button4.TabIndex = 4;
  133. this.button4.Text = "Выход";
  134. this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.TextAboveImage;
  135. this.button4.UseVisualStyleBackColor = true;
  136. this.button4.Click += new System.EventHandler(this.button4_Click);
  137. //
  138. // Form1
  139. //
  140. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  141. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  142. this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  143. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(144)))), ((int)(((byte)(156)))));
  144. this.ClientSize = new System.Drawing.Size(800, 450);
  145. this.Controls.Add(this.button4);
  146. this.Controls.Add(this.textBox1);
  147. this.Controls.Add(this.pictureBox1);
  148. this.Controls.Add(this.panel1);
  149. this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(145)))), ((int)(((byte)(234)))));
  150. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  151. this.Name = "Form1";
  152. this.RightToLeft = System.Windows.Forms.RightToLeft.No;
  153. this.Text = "Form1";
  154. this.Load += new System.EventHandler(this.Form1_Load);
  155. this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseDown);
  156. this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseMove);
  157. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  158. this.panel1.ResumeLayout(false);
  159. this.ResumeLayout(false);
  160. this.PerformLayout();
  161. }
  162. #endregion
  163. private System.Windows.Forms.ImageList imageList1;
  164. private System.Windows.Forms.PictureBox pictureBox1;
  165. private System.Windows.Forms.Panel panel1;
  166. private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  167. private System.Windows.Forms.TextBox textBox1;
  168. private System.Windows.Forms.Button button3;
  169. private System.Windows.Forms.Button button2;
  170. private System.Windows.Forms.Button button1;
  171. private System.Windows.Forms.Button button4;
  172. }
  173. }