130 lines
5.2 KiB
C#
130 lines
5.2 KiB
C#
namespace ProjectGSM.Forms
|
|
{
|
|
partial class FormAdvocates
|
|
{
|
|
/// <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()
|
|
{
|
|
panel1 = new Panel();
|
|
deleteButton = new Button();
|
|
editButton = new Button();
|
|
addButton = new Button();
|
|
dataGridViewAdvocats = new DataGridView();
|
|
panel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewAdvocats).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// panel1
|
|
//
|
|
panel1.Controls.Add(deleteButton);
|
|
panel1.Controls.Add(editButton);
|
|
panel1.Controls.Add(addButton);
|
|
panel1.Dock = DockStyle.Right;
|
|
panel1.Location = new Point(604, 0);
|
|
panel1.Name = "panel1";
|
|
panel1.Size = new Size(142, 450);
|
|
panel1.TabIndex = 0;
|
|
//
|
|
// deleteButton
|
|
//
|
|
deleteButton.BackgroundImage = Properties.Resources.circle_x_svgrepo_com;
|
|
deleteButton.BackgroundImageLayout = ImageLayout.Zoom;
|
|
deleteButton.Location = new Point(33, 240);
|
|
deleteButton.Name = "deleteButton";
|
|
deleteButton.Size = new Size(75, 75);
|
|
deleteButton.TabIndex = 2;
|
|
deleteButton.Text = " ";
|
|
deleteButton.UseVisualStyleBackColor = true;
|
|
deleteButton.Click += deleteButton_Click;
|
|
//
|
|
// editButton
|
|
//
|
|
editButton.BackgroundImage = Properties.Resources.pencil_svgrepo_com;
|
|
editButton.BackgroundImageLayout = ImageLayout.Zoom;
|
|
editButton.Location = new Point(33, 139);
|
|
editButton.Name = "editButton";
|
|
editButton.Size = new Size(75, 75);
|
|
editButton.TabIndex = 1;
|
|
editButton.Text = " ";
|
|
editButton.UseVisualStyleBackColor = true;
|
|
editButton.Click += editButton_Click;
|
|
//
|
|
// addButton
|
|
//
|
|
addButton.BackgroundImage = Properties.Resources.circle_plus_svgrepo_com;
|
|
addButton.BackgroundImageLayout = ImageLayout.Zoom;
|
|
addButton.Location = new Point(33, 38);
|
|
addButton.Name = "addButton";
|
|
addButton.Size = new Size(75, 75);
|
|
addButton.TabIndex = 0;
|
|
addButton.Text = " ";
|
|
addButton.UseVisualStyleBackColor = true;
|
|
addButton.Click += addButton_Click;
|
|
//
|
|
// dataGridView1
|
|
//
|
|
dataGridViewAdvocats.AllowUserToAddRows = false;
|
|
dataGridViewAdvocats.AllowUserToDeleteRows = false;
|
|
dataGridViewAdvocats.AllowUserToResizeColumns = false;
|
|
dataGridViewAdvocats.AllowUserToResizeRows = false;
|
|
dataGridViewAdvocats.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
|
|
dataGridViewAdvocats.BackgroundColor = SystemColors.Info;
|
|
dataGridViewAdvocats.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridViewAdvocats.Dock = DockStyle.Fill;
|
|
dataGridViewAdvocats.Location = new Point(0, 0);
|
|
dataGridViewAdvocats.MultiSelect = false;
|
|
dataGridViewAdvocats.Name = "dataGridViewAdvocats";
|
|
dataGridViewAdvocats.ReadOnly = true;
|
|
dataGridViewAdvocats.RowHeadersVisible = false;
|
|
dataGridViewAdvocats.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|
dataGridViewAdvocats.Size = new Size(604, 450);
|
|
dataGridViewAdvocats.TabIndex = 1;
|
|
//
|
|
// FormAdvocates
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(746, 450);
|
|
Controls.Add(dataGridViewAdvocats);
|
|
Controls.Add(panel1);
|
|
Name = "FormAdvocates";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Адвокаты";
|
|
Load += FormClients_Load;
|
|
panel1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewAdvocats).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Panel panel1;
|
|
private Button deleteButton;
|
|
private Button editButton;
|
|
private Button addButton;
|
|
private DataGridView dataGridViewAdvocats;
|
|
}
|
|
} |