PIBD14-Boyko-M.S.-GSM-Autot.../ProjectGSM/Forms/FormCases.Designer.cs

115 lines
4.4 KiB
C#
Raw Normal View History

2024-11-05 03:59:13 +04:00
namespace ProjectGSM.Forms
{
partial class FormCases
{
/// <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();
addButton = new Button();
dataGridView1 = new DataGridView();
panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
SuspendLayout();
//
// panel1
//
panel1.Controls.Add(deleteButton);
panel1.Controls.Add(addButton);
panel1.Dock = DockStyle.Right;
2024-11-18 23:50:05 +04:00
panel1.Location = new Point(604, 0);
2024-11-05 03:59:13 +04:00
panel1.Name = "panel1";
2024-11-18 23:50:05 +04:00
panel1.Size = new Size(142, 450);
2024-11-05 03:59:13 +04:00
panel1.TabIndex = 0;
//
// deleteButton
//
deleteButton.BackgroundImage = Properties.Resources.circle_x_svgrepo_com;
2024-11-18 23:50:05 +04:00
deleteButton.BackgroundImageLayout = ImageLayout.Stretch;
deleteButton.Location = new Point(33, 137);
deleteButton.Margin = new Padding(2, 2, 2, 2);
2024-11-05 03:59:13 +04:00
deleteButton.Name = "deleteButton";
2024-11-18 23:50:05 +04:00
deleteButton.Size = new Size(75, 72);
deleteButton.TabIndex = 0;
2024-11-05 03:59:13 +04:00
deleteButton.Click += deleteButton_Click;
//
// addButton
//
addButton.BackgroundImage = Properties.Resources.circle_plus_svgrepo_com;
addButton.BackgroundImageLayout = ImageLayout.Zoom;
2024-11-18 23:50:05 +04:00
addButton.Location = new Point(33, 38);
2024-11-05 03:59:13 +04:00
addButton.Name = "addButton";
2024-11-18 23:50:05 +04:00
addButton.Size = new Size(75, 75);
2024-11-05 03:59:13 +04:00
addButton.TabIndex = 0;
addButton.Text = " ";
addButton.UseVisualStyleBackColor = true;
addButton.Click += addButton_Click;
//
// dataGridView1
//
dataGridView1.AllowUserToAddRows = false;
dataGridView1.AllowUserToDeleteRows = false;
dataGridView1.AllowUserToResizeColumns = false;
dataGridView1.AllowUserToResizeRows = false;
dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
dataGridView1.BackgroundColor = SystemColors.Info;
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView1.Dock = DockStyle.Fill;
dataGridView1.Location = new Point(0, 0);
dataGridView1.MultiSelect = false;
dataGridView1.Name = "dataGridView1";
dataGridView1.ReadOnly = true;
dataGridView1.RowHeadersVisible = false;
2024-11-09 03:06:08 +04:00
dataGridView1.RowHeadersWidth = 62;
2024-11-05 03:59:13 +04:00
dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
2024-11-18 23:50:05 +04:00
dataGridView1.Size = new Size(604, 450);
2024-11-05 03:59:13 +04:00
dataGridView1.TabIndex = 1;
//
// FormCases
//
2024-11-18 23:50:05 +04:00
AutoScaleDimensions = new SizeF(7F, 15F);
2024-11-05 03:59:13 +04:00
AutoScaleMode = AutoScaleMode.Font;
2024-11-18 23:50:05 +04:00
ClientSize = new Size(746, 450);
2024-11-05 03:59:13 +04:00
Controls.Add(dataGridView1);
Controls.Add(panel1);
Name = "FormCases";
StartPosition = FormStartPosition.CenterScreen;
Text = "Дела";
Load += FormClients_Load;
panel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();
ResumeLayout(false);
}
#endregion
private Panel panel1;
private Button deleteButton;
private Button addButton;
private DataGridView dataGridView1;
}
}