126 lines
6.1 KiB
C#
126 lines
6.1 KiB
C#
|
namespace BlogViewModel
|
|||
|
{
|
|||
|
partial class FormMain
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|||
|
this.MenuStrip = new System.Windows.Forms.MenuStrip();
|
|||
|
this.пользователиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.тегиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.комментарииРаботыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.новостиToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.письмаToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|||
|
this.MenuStrip.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// dataGridView
|
|||
|
//
|
|||
|
this.dataGridView.BackgroundColor = System.Drawing.SystemColors.Control;
|
|||
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
this.dataGridView.Location = new System.Drawing.Point(12, 43);
|
|||
|
this.dataGridView.Name = "dataGridView";
|
|||
|
this.dataGridView.RowHeadersWidth = 51;
|
|||
|
this.dataGridView.RowTemplate.Height = 29;
|
|||
|
this.dataGridView.Size = new System.Drawing.Size(1108, 467);
|
|||
|
this.dataGridView.TabIndex = 2;
|
|||
|
//
|
|||
|
// MenuStrip
|
|||
|
//
|
|||
|
this.MenuStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
|
|||
|
this.MenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
this.пользователиToolStripMenuItem,
|
|||
|
this.тегиToolStripMenuItem,
|
|||
|
this.комментарииРаботыToolStripMenuItem,
|
|||
|
this.новостиToolStripMenuItem1,
|
|||
|
this.письмаToolStripMenuItem});
|
|||
|
this.MenuStrip.Location = new System.Drawing.Point(0, 0);
|
|||
|
this.MenuStrip.Name = "MenuStrip";
|
|||
|
this.MenuStrip.Padding = new System.Windows.Forms.Padding(7, 3, 0, 3);
|
|||
|
this.MenuStrip.Size = new System.Drawing.Size(1132, 30);
|
|||
|
this.MenuStrip.TabIndex = 3;
|
|||
|
this.MenuStrip.Text = "menuStrip1";
|
|||
|
//
|
|||
|
// пользователиToolStripMenuItem
|
|||
|
//
|
|||
|
this.пользователиToolStripMenuItem.Name = "пользователиToolStripMenuItem";
|
|||
|
this.пользователиToolStripMenuItem.Size = new System.Drawing.Size(121, 24);
|
|||
|
this.пользователиToolStripMenuItem.Text = "Пользователь";
|
|||
|
this.пользователиToolStripMenuItem.Click += new System.EventHandler(this.пользователиToolStripMenuItem_Click);
|
|||
|
//
|
|||
|
// тегиToolStripMenuItem
|
|||
|
//
|
|||
|
this.тегиToolStripMenuItem.Name = "тегиToolStripMenuItem";
|
|||
|
this.тегиToolStripMenuItem.Size = new System.Drawing.Size(54, 24);
|
|||
|
this.тегиToolStripMenuItem.Text = "Теги";
|
|||
|
//
|
|||
|
// комментарииРаботыToolStripMenuItem
|
|||
|
//
|
|||
|
this.комментарииРаботыToolStripMenuItem.Name = "комментарииРаботыToolStripMenuItem";
|
|||
|
this.комментарииРаботыToolStripMenuItem.Size = new System.Drawing.Size(121, 24);
|
|||
|
this.комментарииРаботыToolStripMenuItem.Text = "Комментарии";
|
|||
|
//
|
|||
|
// новостиToolStripMenuItem1
|
|||
|
//
|
|||
|
this.новостиToolStripMenuItem1.Name = "новостиToolStripMenuItem1";
|
|||
|
this.новостиToolStripMenuItem1.Size = new System.Drawing.Size(82, 24);
|
|||
|
this.новостиToolStripMenuItem1.Text = "Новости";
|
|||
|
//
|
|||
|
// письмаToolStripMenuItem
|
|||
|
//
|
|||
|
this.письмаToolStripMenuItem.Name = "письмаToolStripMenuItem";
|
|||
|
this.письмаToolStripMenuItem.Size = new System.Drawing.Size(14, 24);
|
|||
|
//
|
|||
|
// FormMain
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(1132, 522);
|
|||
|
this.Controls.Add(this.MenuStrip);
|
|||
|
this.Controls.Add(this.dataGridView);
|
|||
|
this.Name = "FormMain";
|
|||
|
this.Text = "FormMain";
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|||
|
this.MenuStrip.ResumeLayout(false);
|
|||
|
this.MenuStrip.PerformLayout();
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private DataGridView dataGridView;
|
|||
|
private MenuStrip MenuStrip;
|
|||
|
private ToolStripMenuItem пользователиToolStripMenuItem;
|
|||
|
private ToolStripMenuItem тегиToolStripMenuItem;
|
|||
|
private ToolStripMenuItem комментарииРаботыToolStripMenuItem;
|
|||
|
private ToolStripMenuItem новостиToolStripMenuItem1;
|
|||
|
private ToolStripMenuItem письмаToolStripMenuItem;
|
|||
|
}
|
|||
|
}
|