| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- namespace PhotoStudioApp
- {
- partial class ClientForm
- {
- private System.ComponentModel.IContainer components = null;
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- private void InitializeComponent()
- {
- this.dgvClients = new System.Windows.Forms.DataGridView();
- this.btnAdd = new System.Windows.Forms.Button();
- this.btnEdit = new System.Windows.Forms.Button();
- this.btnDelete = new System.Windows.Forms.Button();
- this.btnClose = new System.Windows.Forms.Button();
- this.lblTitle = new System.Windows.Forms.Label();
- ((System.ComponentModel.ISupportInitialize)(this.dgvClients)).BeginInit();
- this.SuspendLayout();
- //
- // dgvClients
- //
- this.dgvClients.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
- this.dgvClients.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvClients.Location = new System.Drawing.Point(27, 74);
- this.dgvClients.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.dgvClients.MultiSelect = false;
- this.dgvClients.Name = "dgvClients";
- this.dgvClients.ReadOnly = true;
- this.dgvClients.RowHeadersWidth = 51;
- this.dgvClients.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvClients.Size = new System.Drawing.Size(922, 431);
- this.dgvClients.TabIndex = 0;
- //
- // btnAdd
- //
- this.btnAdd.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.btnAdd.Location = new System.Drawing.Point(27, 537);
- this.btnAdd.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.btnAdd.Name = "btnAdd";
- this.btnAdd.Size = new System.Drawing.Size(195, 40);
- this.btnAdd.TabIndex = 1;
- this.btnAdd.Text = "Добавить клиента";
- this.btnAdd.UseVisualStyleBackColor = true;
- this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
- //
- // btnEdit
- //
- this.btnEdit.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.btnEdit.Location = new System.Drawing.Point(230, 537);
- this.btnEdit.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.btnEdit.Name = "btnEdit";
- this.btnEdit.Size = new System.Drawing.Size(175, 40);
- this.btnEdit.TabIndex = 2;
- this.btnEdit.Text = "Редактировать";
- this.btnEdit.UseVisualStyleBackColor = true;
- this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
- //
- // btnDelete
- //
- this.btnDelete.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.btnDelete.Location = new System.Drawing.Point(413, 537);
- this.btnDelete.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.btnDelete.Name = "btnDelete";
- this.btnDelete.Size = new System.Drawing.Size(160, 40);
- this.btnDelete.TabIndex = 3;
- this.btnDelete.Text = "Удалить";
- this.btnDelete.UseVisualStyleBackColor = true;
- this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
- //
- // btnClose
- //
- this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.btnClose.Location = new System.Drawing.Point(581, 537);
- this.btnClose.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.btnClose.Name = "btnClose";
- this.btnClose.Size = new System.Drawing.Size(160, 40);
- this.btnClose.TabIndex = 4;
- this.btnClose.Text = "Закрыть";
- this.btnClose.UseVisualStyleBackColor = true;
- this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
- //
- // lblTitle
- //
- this.lblTitle.AutoSize = true;
- this.lblTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.lblTitle.Location = new System.Drawing.Point(27, 25);
- this.lblTitle.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.lblTitle.Name = "lblTitle";
- this.lblTitle.Size = new System.Drawing.Size(313, 29);
- this.lblTitle.TabIndex = 5;
- this.lblTitle.Text = "Управление клиентами";
- //
- // ClientForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(962, 623);
- this.Controls.Add(this.lblTitle);
- this.Controls.Add(this.btnClose);
- this.Controls.Add(this.btnDelete);
- this.Controls.Add(this.btnEdit);
- this.Controls.Add(this.btnAdd);
- this.Controls.Add(this.dgvClients);
- this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.Name = "ClientForm";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "Управление клиентами";
- ((System.ComponentModel.ISupportInitialize)(this.dgvClients)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.DataGridView dgvClients;
- private System.Windows.Forms.Button btnAdd;
- private System.Windows.Forms.Button btnEdit;
- private System.Windows.Forms.Button btnDelete;
- private System.Windows.Forms.Button btnClose;
- private System.Windows.Forms.Label lblTitle;
- }
- }
|