103 lines
3.7 KiB
C#
103 lines
3.7 KiB
C#
|
namespace GiftShopView
|
|||
|
{
|
|||
|
partial class FormReportShopsGifts
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
dataGridView = new DataGridView();
|
|||
|
ShopColumn = new DataGridViewTextBoxColumn();
|
|||
|
GiftColumn = new DataGridViewTextBoxColumn();
|
|||
|
CountColumn = new DataGridViewTextBoxColumn();
|
|||
|
SaveButton = new Button();
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// dataGridView
|
|||
|
//
|
|||
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
dataGridView.Columns.AddRange(new DataGridViewColumn[] { ShopColumn, GiftColumn, CountColumn });
|
|||
|
dataGridView.Location = new Point(12, 64);
|
|||
|
dataGridView.Name = "dataGridView";
|
|||
|
dataGridView.RowHeadersWidth = 51;
|
|||
|
dataGridView.RowTemplate.Height = 29;
|
|||
|
dataGridView.Size = new Size(682, 374);
|
|||
|
dataGridView.TabIndex = 0;
|
|||
|
//
|
|||
|
// ShopColumn
|
|||
|
//
|
|||
|
ShopColumn.HeaderText = "Магазин";
|
|||
|
ShopColumn.MinimumWidth = 6;
|
|||
|
ShopColumn.Name = "ShopColumn";
|
|||
|
ShopColumn.Width = 250;
|
|||
|
//
|
|||
|
// GiftColumn
|
|||
|
//
|
|||
|
GiftColumn.HeaderText = "Подарок";
|
|||
|
GiftColumn.MinimumWidth = 6;
|
|||
|
GiftColumn.Name = "GiftColumn";
|
|||
|
GiftColumn.Width = 250;
|
|||
|
//
|
|||
|
// CountColumn
|
|||
|
//
|
|||
|
CountColumn.HeaderText = "Количество";
|
|||
|
CountColumn.MinimumWidth = 6;
|
|||
|
CountColumn.Name = "CountColumn";
|
|||
|
CountColumn.Width = 125;
|
|||
|
//
|
|||
|
// SaveButton
|
|||
|
//
|
|||
|
SaveButton.Location = new Point(12, 29);
|
|||
|
SaveButton.Name = "SaveButton";
|
|||
|
SaveButton.Size = new Size(108, 29);
|
|||
|
SaveButton.TabIndex = 1;
|
|||
|
SaveButton.Text = "Сохранить в";
|
|||
|
SaveButton.UseVisualStyleBackColor = true;
|
|||
|
SaveButton.Click += SaveButton_Click_1;
|
|||
|
//
|
|||
|
// ReportShopsIceCreamsForm
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(702, 450);
|
|||
|
Controls.Add(SaveButton);
|
|||
|
Controls.Add(dataGridView);
|
|||
|
Name = "FormReportShopsGifts";
|
|||
|
Text = "Подарки по магазинам";
|
|||
|
Load += FormReportShopsGifts_Load;
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private DataGridView dataGridView;
|
|||
|
private Button SaveButton;
|
|||
|
private DataGridViewTextBoxColumn ShopColumn;
|
|||
|
private DataGridViewTextBoxColumn GiftColumn;
|
|||
|
private DataGridViewTextBoxColumn CountColumn;
|
|||
|
}
|
|||
|
}
|