77 lines
2.8 KiB
C#
77 lines
2.8 KiB
C#
namespace ProjectSellPC.Forms.Receipt
|
|
{
|
|
partial class ChequeForm
|
|
{
|
|
/// <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()
|
|
{
|
|
addButton = new Button();
|
|
ChequesDataGridView = new DataGridView();
|
|
((System.ComponentModel.ISupportInitialize)ChequesDataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// addButton
|
|
//
|
|
addButton.BackColor = SystemColors.Control;
|
|
addButton.Location = new Point(878, 12);
|
|
addButton.Name = "addButton";
|
|
addButton.Size = new Size(161, 60);
|
|
addButton.TabIndex = 3;
|
|
addButton.Text = "Добавить";
|
|
addButton.UseVisualStyleBackColor = false;
|
|
addButton.Click += addButton_Click;
|
|
//
|
|
// ChequesDataGridView
|
|
//
|
|
ChequesDataGridView.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left;
|
|
ChequesDataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
ChequesDataGridView.Location = new Point(12, 12);
|
|
ChequesDataGridView.Name = "ChequesDataGridView";
|
|
ChequesDataGridView.RowHeadersWidth = 51;
|
|
ChequesDataGridView.Size = new Size(851, 399);
|
|
ChequesDataGridView.TabIndex = 2;
|
|
//
|
|
// ChequeForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(1056, 450);
|
|
Controls.Add(addButton);
|
|
Controls.Add(ChequesDataGridView);
|
|
Name = "ChequeForm";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Чеки";
|
|
Load += ChequeForm_Load;
|
|
((System.ComponentModel.ISupportInitialize)ChequesDataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button addButton;
|
|
private DataGridView ChequesDataGridView;
|
|
}
|
|
} |