Form1.Designer.cs 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. namespace BB_Stelmah
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Обязательная переменная конструктора.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Освободить все используемые ресурсы.
  11. /// </summary>
  12. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</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
  22. /// <summary>
  23. /// Требуемый метод для поддержки конструктора — не изменяйте
  24. /// содержимое этого метода с помощью редактора кода.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.label1 = new System.Windows.Forms.Label();
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.button2 = new System.Windows.Forms.Button();
  31. this.SuspendLayout();
  32. //
  33. // label1
  34. //
  35. this.label1.AutoSize = true;
  36. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  37. this.label1.Location = new System.Drawing.Point(12, 9);
  38. this.label1.Name = "label1";
  39. this.label1.Size = new System.Drawing.Size(333, 24);
  40. this.label1.TabIndex = 0;
  41. this.label1.Text = "Салон красоты \"Бархатные Бровки\"";
  42. this.label1.Click += new System.EventHandler(this.label1_Click);
  43. //
  44. // button1
  45. //
  46. this.button1.Location = new System.Drawing.Point(16, 36);
  47. this.button1.Name = "button1";
  48. this.button1.Size = new System.Drawing.Size(327, 34);
  49. this.button1.TabIndex = 1;
  50. this.button1.Text = "Услуги";
  51. this.button1.UseVisualStyleBackColor = true;
  52. this.button1.Click += new System.EventHandler(this.button1_Click);
  53. //
  54. // button2
  55. //
  56. this.button2.Location = new System.Drawing.Point(16, 76);
  57. this.button2.Name = "button2";
  58. this.button2.Size = new System.Drawing.Size(327, 35);
  59. this.button2.TabIndex = 2;
  60. this.button2.Text = "Заказы";
  61. this.button2.UseVisualStyleBackColor = true;
  62. //
  63. // Form1
  64. //
  65. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  66. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  67. this.ClientSize = new System.Drawing.Size(355, 206);
  68. this.Controls.Add(this.button2);
  69. this.Controls.Add(this.button1);
  70. this.Controls.Add(this.label1);
  71. this.Name = "Form1";
  72. this.Text = "Form1";
  73. this.ResumeLayout(false);
  74. this.PerformLayout();
  75. }
  76. #endregion
  77. private System.Windows.Forms.Label label1;
  78. private System.Windows.Forms.Button button1;
  79. private System.Windows.Forms.Button button2;
  80. }
  81. }