127 lines
4.9 KiB
C#
127 lines
4.9 KiB
C#
namespace ProjectOptika.Scripts.Forms
|
|
{
|
|
partial class FormSpecifications
|
|
{
|
|
/// <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()
|
|
{
|
|
panel = new Panel();
|
|
buttonRemove = new Button();
|
|
buttonUpdate = new Button();
|
|
buttonAdd = new Button();
|
|
dataGridView = new DataGridView();
|
|
panel.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// panel
|
|
//
|
|
panel.Controls.Add(buttonRemove);
|
|
panel.Controls.Add(buttonUpdate);
|
|
panel.Controls.Add(buttonAdd);
|
|
panel.Dock = DockStyle.Right;
|
|
panel.Location = new Point(696, 0);
|
|
panel.Name = "panel";
|
|
panel.Size = new Size(104, 450);
|
|
panel.TabIndex = 6;
|
|
//
|
|
// buttonRemove
|
|
//
|
|
buttonRemove.BackgroundImage = Properties.Resources.Remove;
|
|
buttonRemove.BackgroundImageLayout = ImageLayout.Stretch;
|
|
buttonRemove.Location = new Point(3, 166);
|
|
buttonRemove.Name = "buttonRemove";
|
|
buttonRemove.Size = new Size(96, 71);
|
|
buttonRemove.TabIndex = 2;
|
|
buttonRemove.UseVisualStyleBackColor = true;
|
|
buttonRemove.Click += ButtonRemove_Click;
|
|
//
|
|
// buttonUpdate
|
|
//
|
|
buttonUpdate.BackgroundImage = Properties.Resources.Update;
|
|
buttonUpdate.BackgroundImageLayout = ImageLayout.Stretch;
|
|
buttonUpdate.Location = new Point(3, 89);
|
|
buttonUpdate.Name = "buttonUpdate";
|
|
buttonUpdate.Size = new Size(96, 71);
|
|
buttonUpdate.TabIndex = 1;
|
|
buttonUpdate.UseVisualStyleBackColor = true;
|
|
buttonUpdate.Click += ButtonUpdate_Click;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.BackgroundImage = Properties.Resources.Add;
|
|
buttonAdd.BackgroundImageLayout = ImageLayout.Stretch;
|
|
buttonAdd.Location = new Point(3, 12);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(96, 71);
|
|
buttonAdd.TabIndex = 0;
|
|
buttonAdd.UseVisualStyleBackColor = true;
|
|
buttonAdd.Click += ButtonAdd_Click;
|
|
//
|
|
// dataGridView
|
|
//
|
|
dataGridView.AllowUserToAddRows = false;
|
|
dataGridView.AllowUserToDeleteRows = false;
|
|
dataGridView.AllowUserToResizeColumns = false;
|
|
dataGridView.AllowUserToResizeRows = false;
|
|
dataGridView.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
|
|
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.RowHeadersWidth = 51;
|
|
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|
dataGridView.Size = new Size(800, 450);
|
|
dataGridView.TabIndex = 7;
|
|
//
|
|
// FormSpecifications
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(panel);
|
|
Controls.Add(dataGridView);
|
|
Name = "FormSpecifications";
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "Характеристики";
|
|
Load += Form_Load;
|
|
panel.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Panel panel;
|
|
private Button buttonRemove;
|
|
private Button buttonUpdate;
|
|
private Button buttonAdd;
|
|
private DataGridView dataGridView;
|
|
}
|
|
} |