MainForm.Designer.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. 
  2. namespace Avtoprok
  3. {
  4. partial class MainForm
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.button2 = new System.Windows.Forms.Button();
  32. this.button3 = new System.Windows.Forms.Button();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.SuspendLayout();
  35. //
  36. // button1
  37. //
  38. this.button1.Location = new System.Drawing.Point(66, 93);
  39. this.button1.Name = "button1";
  40. this.button1.Size = new System.Drawing.Size(123, 41);
  41. this.button1.TabIndex = 0;
  42. this.button1.Text = "Car";
  43. this.button1.UseVisualStyleBackColor = true;
  44. this.button1.Click += new System.EventHandler(this.button1_Click);
  45. //
  46. // button2
  47. //
  48. this.button2.Location = new System.Drawing.Point(66, 140);
  49. this.button2.Name = "button2";
  50. this.button2.Size = new System.Drawing.Size(123, 41);
  51. this.button2.TabIndex = 1;
  52. this.button2.Text = "Client";
  53. this.button2.UseVisualStyleBackColor = true;
  54. this.button2.Click += new System.EventHandler(this.button2_Click);
  55. //
  56. // button3
  57. //
  58. this.button3.Location = new System.Drawing.Point(66, 187);
  59. this.button3.Name = "button3";
  60. this.button3.Size = new System.Drawing.Size(123, 41);
  61. this.button3.TabIndex = 2;
  62. this.button3.Text = "Order";
  63. this.button3.UseVisualStyleBackColor = true;
  64. this.button3.Click += new System.EventHandler(this.button3_Click);
  65. //
  66. // label1
  67. //
  68. this.label1.Font = new System.Drawing.Font("Arial Narrow", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  69. this.label1.Location = new System.Drawing.Point(4, 29);
  70. this.label1.Name = "label1";
  71. this.label1.Size = new System.Drawing.Size(244, 44);
  72. this.label1.TabIndex = 3;
  73. this.label1.Text = "DB CarSharing";
  74. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  75. this.label1.Click += new System.EventHandler(this.label1_Click);
  76. //
  77. // MainForm
  78. //
  79. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  80. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  81. this.ClientSize = new System.Drawing.Size(252, 267);
  82. this.Controls.Add(this.label1);
  83. this.Controls.Add(this.button3);
  84. this.Controls.Add(this.button2);
  85. this.Controls.Add(this.button1);
  86. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  87. this.Name = "MainForm";
  88. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  89. this.Text = "Menu";
  90. this.ResumeLayout(false);
  91. }
  92. #endregion
  93. private System.Windows.Forms.Button button1;
  94. private System.Windows.Forms.Button button2;
  95. private System.Windows.Forms.Button button3;
  96. private System.Windows.Forms.Label label1;
  97. }
  98. }