92 lines
4.0 KiB
C#
92 lines
4.0 KiB
C#
|
namespace LawFirmView
|
|||
|
{
|
|||
|
partial class FormViewClients
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Required designer variable.
|
|||
|
/// </summary>
|
|||
|
private System.ComponentModel.IContainer components = null;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Clean up any resources being used.
|
|||
|
/// </summary>
|
|||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|||
|
protected override void Dispose(bool disposing)
|
|||
|
{
|
|||
|
if (disposing && (components != null))
|
|||
|
{
|
|||
|
components.Dispose();
|
|||
|
}
|
|||
|
base.Dispose(disposing);
|
|||
|
}
|
|||
|
|
|||
|
#region Windows Form Designer generated code
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Required method for Designer support - do not modify
|
|||
|
/// the contents of this method with the code editor.
|
|||
|
/// </summary>
|
|||
|
private void InitializeComponent()
|
|||
|
{
|
|||
|
this.buttonRef = new System.Windows.Forms.Button();
|
|||
|
this.buttonDel = new System.Windows.Forms.Button();
|
|||
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// buttonRef
|
|||
|
//
|
|||
|
this.buttonRef.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.buttonRef.Location = new System.Drawing.Point(579, 51);
|
|||
|
this.buttonRef.Name = "buttonRef";
|
|||
|
this.buttonRef.Size = new System.Drawing.Size(90, 37);
|
|||
|
this.buttonRef.TabIndex = 9;
|
|||
|
this.buttonRef.Text = "Обновить";
|
|||
|
this.buttonRef.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// buttonDel
|
|||
|
//
|
|||
|
this.buttonDel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.buttonDel.Location = new System.Drawing.Point(579, 12);
|
|||
|
this.buttonDel.Name = "buttonDel";
|
|||
|
this.buttonDel.Size = new System.Drawing.Size(90, 33);
|
|||
|
this.buttonDel.TabIndex = 8;
|
|||
|
this.buttonDel.Text = "Удалить";
|
|||
|
this.buttonDel.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// dataGridView
|
|||
|
//
|
|||
|
this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|||
|
| System.Windows.Forms.AnchorStyles.Left)
|
|||
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.dataGridView.BackgroundColor = System.Drawing.Color.White;
|
|||
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
this.dataGridView.GridColor = System.Drawing.Color.White;
|
|||
|
this.dataGridView.Location = new System.Drawing.Point(12, 12);
|
|||
|
this.dataGridView.Name = "dataGridView";
|
|||
|
this.dataGridView.RowTemplate.Height = 25;
|
|||
|
this.dataGridView.Size = new System.Drawing.Size(561, 302);
|
|||
|
this.dataGridView.TabIndex = 5;
|
|||
|
//
|
|||
|
// FormViewClients
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(681, 319);
|
|||
|
this.Controls.Add(this.buttonRef);
|
|||
|
this.Controls.Add(this.buttonDel);
|
|||
|
this.Controls.Add(this.dataGridView);
|
|||
|
this.Name = "FormViewClients";
|
|||
|
this.Text = "Просмотр и удаление клиентов";
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Button buttonRef;
|
|||
|
private Button buttonDel;
|
|||
|
private DataGridView dataGridView;
|
|||
|
}
|
|||
|
}
|