PIbd-21_Chechevitsyn_S.A_Si.../Publication/Forms/FormPrintingHouse.Designer.cs
2024-12-19 09:07:09 +04:00

216 lines
8.3 KiB
C#

namespace Publication.Forms
{
partial class FormPrintingHouse
{
/// <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()
{
labelTitle = new Label();
labelPhone = new Label();
labelAddress = new Label();
labelMaterials = new Label();
textBoxTitle = new TextBox();
textBoxPhone = new TextBox();
textBoxAddress = new TextBox();
comboBoxMaterials = new ComboBox();
groupBoxGridView = new GroupBox();
dataGridView1 = new DataGridView();
ColumnOrders = new DataGridViewComboBoxColumn();
ColumnCopy = new DataGridViewTextBoxColumn();
buttonSave = new Button();
buttonBreak = new Button();
groupBoxGridView.SuspendLayout();
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
SuspendLayout();
//
// labelTitle
//
labelTitle.AutoSize = true;
labelTitle.Location = new Point(28, 36);
labelTitle.Name = "labelTitle";
labelTitle.Size = new Size(77, 20);
labelTitle.TabIndex = 0;
labelTitle.Text = "Название";
//
// labelPhone
//
labelPhone.AutoSize = true;
labelPhone.Location = new Point(28, 93);
labelPhone.Name = "labelPhone";
labelPhone.Size = new Size(69, 20);
labelPhone.TabIndex = 1;
labelPhone.Text = "Телефон";
//
// labelAddress
//
labelAddress.AutoSize = true;
labelAddress.Location = new Point(28, 143);
labelAddress.Name = "labelAddress";
labelAddress.Size = new Size(51, 20);
labelAddress.TabIndex = 2;
labelAddress.Text = "Адрес";
//
// labelMaterials
//
labelMaterials.AutoSize = true;
labelMaterials.Location = new Point(28, 200);
labelMaterials.Name = "labelMaterials";
labelMaterials.Size = new Size(89, 20);
labelMaterials.TabIndex = 3;
labelMaterials.Text = "Материалы";
//
// textBoxTitle
//
textBoxTitle.Location = new Point(129, 36);
textBoxTitle.Name = "textBoxTitle";
textBoxTitle.Size = new Size(151, 27);
textBoxTitle.TabIndex = 5;
//
// textBoxPhone
//
textBoxPhone.Location = new Point(129, 86);
textBoxPhone.Name = "textBoxPhone";
textBoxPhone.Size = new Size(151, 27);
textBoxPhone.TabIndex = 6;
//
// textBoxAddress
//
textBoxAddress.Location = new Point(129, 143);
textBoxAddress.Name = "textBoxAddress";
textBoxAddress.Size = new Size(151, 27);
textBoxAddress.TabIndex = 7;
//
// comboBoxMaterials
//
comboBoxMaterials.FormattingEnabled = true;
comboBoxMaterials.Location = new Point(129, 200);
comboBoxMaterials.Name = "comboBoxMaterials";
comboBoxMaterials.Size = new Size(151, 28);
comboBoxMaterials.TabIndex = 8;
//
// groupBoxGridView
//
groupBoxGridView.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
groupBoxGridView.Controls.Add(dataGridView1);
groupBoxGridView.Location = new Point(28, 256);
groupBoxGridView.Name = "groupBoxGridView";
groupBoxGridView.Size = new Size(309, 123);
groupBoxGridView.TabIndex = 9;
groupBoxGridView.TabStop = false;
groupBoxGridView.Text = "Заказы";
//
// dataGridView1
//
dataGridView1.AllowUserToResizeColumns = false;
dataGridView1.AllowUserToResizeRows = false;
dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
dataGridView1.ColumnHeadersHeight = 29;
dataGridView1.Columns.AddRange(new DataGridViewColumn[] { ColumnOrders, ColumnCopy });
dataGridView1.Location = new Point(3, 23);
dataGridView1.MultiSelect = false;
dataGridView1.Name = "dataGridView1";
dataGridView1.RowHeadersVisible = false;
dataGridView1.RowHeadersWidth = 51;
dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
dataGridView1.Size = new Size(303, 97);
dataGridView1.TabIndex = 0;
//
// ColumnOrders
//
ColumnOrders.HeaderText = "Заказы";
ColumnOrders.MinimumWidth = 6;
ColumnOrders.Name = "ColumnOrders";
//
// ColumnCopy
//
ColumnCopy.HeaderText = "Кол-во копий";
ColumnCopy.MinimumWidth = 6;
ColumnCopy.Name = "ColumnCopy";
//
// buttonSave
//
buttonSave.Location = new Point(31, 406);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(94, 29);
buttonSave.TabIndex = 10;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonBreak
//
buttonBreak.Location = new Point(240, 406);
buttonBreak.Name = "buttonBreak";
buttonBreak.Size = new Size(94, 29);
buttonBreak.TabIndex = 11;
buttonBreak.Text = "Отмена";
buttonBreak.UseVisualStyleBackColor = true;
buttonBreak.Click += ButtonBreak_Click;
//
// FormPrintingHouse
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(360, 448);
Controls.Add(buttonBreak);
Controls.Add(buttonSave);
Controls.Add(groupBoxGridView);
Controls.Add(comboBoxMaterials);
Controls.Add(textBoxAddress);
Controls.Add(textBoxPhone);
Controls.Add(textBoxTitle);
Controls.Add(labelMaterials);
Controls.Add(labelAddress);
Controls.Add(labelPhone);
Controls.Add(labelTitle);
Name = "FormPrintingHouse";
StartPosition = FormStartPosition.CenterScreen;
Text = "Печать";
groupBoxGridView.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelTitle;
private Label labelPhone;
private Label labelAddress;
private Label labelMaterials;
private TextBox textBoxTitle;
private TextBox textBoxPhone;
private TextBox textBoxAddress;
private ComboBox comboBoxMaterials;
private GroupBox groupBoxGridView;
private DataGridView dataGridView1;
private DataGridViewTextBoxColumn ColumnCount;
private Button buttonSave;
private Button buttonBreak;
private DataGridViewComboBoxColumn ColumnOrders;
private DataGridViewTextBoxColumn ColumnCopy;
}
}