ServiceForm.Designer.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. namespace PhotoStudioApp
  2. {
  3. partial class ServiceForm
  4. {
  5. private System.ComponentModel.IContainer components = null;
  6. protected override void Dispose(bool disposing)
  7. {
  8. if (disposing && (components != null))
  9. {
  10. components.Dispose();
  11. }
  12. base.Dispose(disposing);
  13. }
  14. #region Windows Form Designer generated code
  15. private void InitializeComponent()
  16. {
  17. this.dgvServices = new System.Windows.Forms.DataGridView();
  18. this.btnAdd = new System.Windows.Forms.Button();
  19. this.btnEdit = new System.Windows.Forms.Button();
  20. this.btnDelete = new System.Windows.Forms.Button();
  21. this.btnClose = new System.Windows.Forms.Button();
  22. this.lblTitle = new System.Windows.Forms.Label();
  23. ((System.ComponentModel.ISupportInitialize)(this.dgvServices)).BeginInit();
  24. this.SuspendLayout();
  25. //
  26. // dgvServices
  27. //
  28. this.dgvServices.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
  29. this.dgvServices.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  30. this.dgvServices.Location = new System.Drawing.Point(27, 74);
  31. this.dgvServices.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  32. this.dgvServices.MultiSelect = false;
  33. this.dgvServices.Name = "dgvServices";
  34. this.dgvServices.ReadOnly = true;
  35. this.dgvServices.RowHeadersWidth = 51;
  36. this.dgvServices.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  37. this.dgvServices.Size = new System.Drawing.Size(922, 431);
  38. this.dgvServices.TabIndex = 0;
  39. //
  40. // btnAdd
  41. //
  42. this.btnAdd.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  43. this.btnAdd.Location = new System.Drawing.Point(27, 548);
  44. this.btnAdd.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  45. this.btnAdd.Name = "btnAdd";
  46. this.btnAdd.Size = new System.Drawing.Size(180, 40);
  47. this.btnAdd.TabIndex = 1;
  48. this.btnAdd.Text = "Добавить услугу";
  49. this.btnAdd.UseVisualStyleBackColor = true;
  50. this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
  51. //
  52. // btnEdit
  53. //
  54. this.btnEdit.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  55. this.btnEdit.Location = new System.Drawing.Point(215, 548);
  56. this.btnEdit.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  57. this.btnEdit.Name = "btnEdit";
  58. this.btnEdit.Size = new System.Drawing.Size(160, 40);
  59. this.btnEdit.TabIndex = 2;
  60. this.btnEdit.Text = "Редактировать";
  61. this.btnEdit.UseVisualStyleBackColor = true;
  62. this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
  63. //
  64. // btnDelete
  65. //
  66. this.btnDelete.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  67. this.btnDelete.Location = new System.Drawing.Point(383, 548);
  68. this.btnDelete.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  69. this.btnDelete.Name = "btnDelete";
  70. this.btnDelete.Size = new System.Drawing.Size(160, 40);
  71. this.btnDelete.TabIndex = 3;
  72. this.btnDelete.Text = "Удалить";
  73. this.btnDelete.UseVisualStyleBackColor = true;
  74. this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
  75. //
  76. // btnClose
  77. //
  78. this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  79. this.btnClose.Location = new System.Drawing.Point(551, 548);
  80. this.btnClose.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  81. this.btnClose.Name = "btnClose";
  82. this.btnClose.Size = new System.Drawing.Size(160, 40);
  83. this.btnClose.TabIndex = 4;
  84. this.btnClose.Text = "Закрыть";
  85. this.btnClose.UseVisualStyleBackColor = true;
  86. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  87. //
  88. // lblTitle
  89. //
  90. this.lblTitle.AutoSize = true;
  91. this.lblTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  92. this.lblTitle.Location = new System.Drawing.Point(27, 25);
  93. this.lblTitle.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  94. this.lblTitle.Name = "lblTitle";
  95. this.lblTitle.Size = new System.Drawing.Size(289, 29);
  96. this.lblTitle.TabIndex = 5;
  97. this.lblTitle.Text = "Управление услугами";
  98. //
  99. // ServiceForm
  100. //
  101. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  102. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  103. this.ClientSize = new System.Drawing.Size(962, 623);
  104. this.Controls.Add(this.lblTitle);
  105. this.Controls.Add(this.btnClose);
  106. this.Controls.Add(this.btnDelete);
  107. this.Controls.Add(this.btnEdit);
  108. this.Controls.Add(this.btnAdd);
  109. this.Controls.Add(this.dgvServices);
  110. this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  111. this.Name = "ServiceForm";
  112. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  113. this.Text = "Управление услугами";
  114. ((System.ComponentModel.ISupportInitialize)(this.dgvServices)).EndInit();
  115. this.ResumeLayout(false);
  116. this.PerformLayout();
  117. }
  118. #endregion
  119. private System.Windows.Forms.DataGridView dgvServices;
  120. private System.Windows.Forms.Button btnAdd;
  121. private System.Windows.Forms.Button btnEdit;
  122. private System.Windows.Forms.Button btnDelete;
  123. private System.Windows.Forms.Button btnClose;
  124. private System.Windows.Forms.Label lblTitle;
  125. }
  126. }