Form1.Designer.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. namespace Yslugi_Salona_Krasot
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  31. this.b1 = new System.Windows.Forms.Button();
  32. this.button1 = new System.Windows.Forms.Button();
  33. this.button2 = new System.Windows.Forms.Button();
  34. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // label1
  38. //
  39. this.label1.AutoSize = true;
  40. this.label1.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  41. this.label1.Location = new System.Drawing.Point(133, 69);
  42. this.label1.Name = "label1";
  43. this.label1.Size = new System.Drawing.Size(323, 23);
  44. this.label1.TabIndex = 1;
  45. this.label1.Text = "Салон красоты \"Бархатные бровки\"";
  46. //
  47. // pictureBox1
  48. //
  49. this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  50. this.pictureBox1.Location = new System.Drawing.Point(1, 1);
  51. this.pictureBox1.Name = "pictureBox1";
  52. this.pictureBox1.Size = new System.Drawing.Size(167, 65);
  53. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  54. this.pictureBox1.TabIndex = 15;
  55. this.pictureBox1.TabStop = false;
  56. //
  57. // b1
  58. //
  59. this.b1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
  60. this.b1.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  61. this.b1.Location = new System.Drawing.Point(218, 119);
  62. this.b1.Name = "b1";
  63. this.b1.Size = new System.Drawing.Size(141, 34);
  64. this.b1.TabIndex = 16;
  65. this.b1.Text = "Редактирование услуг";
  66. this.b1.UseVisualStyleBackColor = false;
  67. this.b1.Click += new System.EventHandler(this.b1_Click);
  68. //
  69. // button1
  70. //
  71. this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
  72. this.button1.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  73. this.button1.Location = new System.Drawing.Point(218, 173);
  74. this.button1.Name = "button1";
  75. this.button1.Size = new System.Drawing.Size(141, 34);
  76. this.button1.TabIndex = 17;
  77. this.button1.Text = "Список услуг";
  78. this.button1.UseVisualStyleBackColor = false;
  79. this.button1.Click += new System.EventHandler(this.button1_Click);
  80. //
  81. // button2
  82. //
  83. this.button2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
  84. this.button2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  85. this.button2.Location = new System.Drawing.Point(218, 226);
  86. this.button2.Name = "button2";
  87. this.button2.Size = new System.Drawing.Size(141, 34);
  88. this.button2.TabIndex = 18;
  89. this.button2.Text = "Записи клиентов";
  90. this.button2.UseVisualStyleBackColor = false;
  91. this.button2.Click += new System.EventHandler(this.button2_Click);
  92. //
  93. // Form1
  94. //
  95. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  96. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  97. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  98. this.ClientSize = new System.Drawing.Size(605, 446);
  99. this.Controls.Add(this.button2);
  100. this.Controls.Add(this.button1);
  101. this.Controls.Add(this.b1);
  102. this.Controls.Add(this.pictureBox1);
  103. this.Controls.Add(this.label1);
  104. this.Name = "Form1";
  105. this.Text = "Form1";
  106. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  107. this.ResumeLayout(false);
  108. this.PerformLayout();
  109. }
  110. #endregion
  111. private System.Windows.Forms.Label label1;
  112. private System.Windows.Forms.PictureBox pictureBox1;
  113. private System.Windows.Forms.Button b1;
  114. private System.Windows.Forms.Button button1;
  115. private System.Windows.Forms.Button button2;
  116. }
  117. }