100 lines
3.7 KiB
C#
100 lines
3.7 KiB
C#
namespace ProjectGSM.Forms
|
|
{
|
|
partial class FormStatusesHistory
|
|
{
|
|
/// <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();
|
|
addButton = new Button();
|
|
dataGridView = new DataGridView();
|
|
panel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// panel1
|
|
//
|
|
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;
|
|
//
|
|
// 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
|
|
//
|
|
dataGridView.AllowUserToAddRows = false;
|
|
dataGridView.AllowUserToDeleteRows = false;
|
|
dataGridView.AllowUserToResizeColumns = false;
|
|
dataGridView.AllowUserToResizeRows = false;
|
|
dataGridView.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
|
|
dataGridView.BackgroundColor = SystemColors.Info;
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView.Dock = DockStyle.Fill;
|
|
dataGridView.Location = new Point(0, 0);
|
|
dataGridView.MultiSelect = false;
|
|
dataGridView.Name = "dataGridView";
|
|
dataGridView.ReadOnly = true;
|
|
dataGridView.RowHeadersVisible = false;
|
|
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|
dataGridView.Size = new Size(604, 450);
|
|
dataGridView.TabIndex = 1;
|
|
//
|
|
// FormStatusesHistory
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(746, 450);
|
|
Controls.Add(dataGridView);
|
|
Controls.Add(panel1);
|
|
Name = "FormStatusesHistory";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Суды";
|
|
Load += FormClients_Load;
|
|
panel1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Panel panel1;
|
|
private Button addButton;
|
|
private DataGridView dataGridView;
|
|
}
|
|
} |