namespace Blog { partial class FormCategories { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.dataGridView = new System.Windows.Forms.DataGridView(); this.buttonCreate = new System.Windows.Forms.Button(); this.buttonChange = new System.Windows.Forms.Button(); this.buttonDelete = new System.Windows.Forms.Button(); this.buttonUpdate = new System.Windows.Forms.Button(); this.buttonAddTopicInCategory = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit(); this.SuspendLayout(); // // dataGridView // this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView.Location = new System.Drawing.Point(12, 12); this.dataGridView.Name = "dataGridView"; this.dataGridView.RowHeadersWidth = 51; this.dataGridView.RowTemplate.Height = 29; this.dataGridView.Size = new System.Drawing.Size(300, 188); this.dataGridView.TabIndex = 0; // // buttonCreate // this.buttonCreate.Location = new System.Drawing.Point(330, 12); this.buttonCreate.Name = "buttonCreate"; this.buttonCreate.Size = new System.Drawing.Size(94, 29); this.buttonCreate.TabIndex = 1; this.buttonCreate.Text = "Создать"; this.buttonCreate.UseVisualStyleBackColor = true; this.buttonCreate.Click += new System.EventHandler(this.buttonCreate_Click); // // buttonChange // this.buttonChange.Location = new System.Drawing.Point(330, 47); this.buttonChange.Name = "buttonChange"; this.buttonChange.Size = new System.Drawing.Size(94, 29); this.buttonChange.TabIndex = 2; this.buttonChange.Text = "Изменить"; this.buttonChange.UseVisualStyleBackColor = true; this.buttonChange.Click += new System.EventHandler(this.buttonChange_Click); // // buttonDelete // this.buttonDelete.Location = new System.Drawing.Point(330, 82); this.buttonDelete.Name = "buttonDelete"; this.buttonDelete.Size = new System.Drawing.Size(94, 29); this.buttonDelete.TabIndex = 3; this.buttonDelete.Text = "Удалить"; this.buttonDelete.UseVisualStyleBackColor = true; this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click); // // buttonUpdate // this.buttonUpdate.Location = new System.Drawing.Point(330, 117); this.buttonUpdate.Name = "buttonUpdate"; this.buttonUpdate.Size = new System.Drawing.Size(94, 29); this.buttonUpdate.TabIndex = 4; this.buttonUpdate.Text = "Обновить"; this.buttonUpdate.UseVisualStyleBackColor = true; this.buttonUpdate.Click += new System.EventHandler(this.buttonUpdate_Click); // // buttonAddTopicInCategory // this.buttonAddTopicInCategory.Location = new System.Drawing.Point(330, 152); this.buttonAddTopicInCategory.Name = "buttonAddTopicInCategory"; this.buttonAddTopicInCategory.Size = new System.Drawing.Size(94, 54); this.buttonAddTopicInCategory.TabIndex = 5; this.buttonAddTopicInCategory.Text = "Добавить темы"; this.buttonAddTopicInCategory.UseVisualStyleBackColor = true; this.buttonAddTopicInCategory.Click += new System.EventHandler(this.buttonAddTopicInCategory_Click); // // FormCategories // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(438, 211); this.Controls.Add(this.buttonAddTopicInCategory); this.Controls.Add(this.buttonUpdate); this.Controls.Add(this.buttonDelete); this.Controls.Add(this.buttonChange); this.Controls.Add(this.buttonCreate); this.Controls.Add(this.dataGridView); this.Name = "FormCategories"; this.Text = "Категории"; this.Load += new System.EventHandler(this.FormCategories_Load); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit(); this.ResumeLayout(false); } #endregion private DataGridView dataGridView; private Button buttonCreate; private Button buttonChange; private Button buttonDelete; private Button buttonUpdate; private Button buttonAddTopicInCategory; } }