64 lines
2.6 KiB
C#
64 lines
2.6 KiB
C#
namespace Forms
|
|
{
|
|
partial class CategoryForm
|
|
{
|
|
/// <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()
|
|
{
|
|
dataGridViewCategories = new System.Windows.Forms.DataGridView();
|
|
((System.ComponentModel.ISupportInitialize)(dataGridViewCategories)).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// dataGridViewCategories
|
|
//
|
|
dataGridViewCategories.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridViewCategories.Location = new System.Drawing.Point(12, 12);
|
|
dataGridViewCategories.Name = "dataGridViewCategories";
|
|
dataGridViewCategories.RowHeadersWidth = 51;
|
|
dataGridViewCategories.Size = new System.Drawing.Size(711, 426);
|
|
dataGridViewCategories.TabIndex = 0;
|
|
dataGridViewCategories.CellValueChanged += dataGridViewCategories_CellValueChanged;
|
|
dataGridViewCategories.UserAddedRow += dataGridViewCategories_UserAddedRow;
|
|
dataGridViewCategories.UserDeletingRow += dataGridViewCategories_UserDeletingRow;
|
|
dataGridViewCategories.KeyDown += dataGridViewCategories_KeyDown;
|
|
//
|
|
// CategoryForm
|
|
//
|
|
AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
|
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
ClientSize = new System.Drawing.Size(731, 450);
|
|
Controls.Add(dataGridViewCategories);
|
|
Name = "CategoryForm";
|
|
Text = "CategoryForm";
|
|
((System.ComponentModel.ISupportInitialize)(dataGridViewCategories)).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dataGridViewCategories;
|
|
}
|
|
} |