DepartmentProject/DepartmentPortal/DepartmentPortalDesctop/FormMain.Designer.cs

150 lines
6.1 KiB
C#

namespace DepartmentPortalDesctop
{
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.menuMain = new System.Windows.Forms.MenuStrip();
this.panelControls = new System.Windows.Forms.Panel();
this.dataGridViewControls = new System.Windows.Forms.DataGridView();
this.ColumnControlId = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ColumnControlName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ButtonShowHideControlList = new System.Windows.Forms.Button();
this.panelControl = new System.Windows.Forms.Panel();
this.panelControls.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewControls)).BeginInit();
this.SuspendLayout();
//
// menuMain
//
this.menuMain.Location = new System.Drawing.Point(0, 0);
this.menuMain.Name = "menuMain";
this.menuMain.Size = new System.Drawing.Size(800, 24);
this.menuMain.TabIndex = 0;
this.menuMain.Text = "Главное меню";
//
// panelControls
//
this.panelControls.Controls.Add(this.dataGridViewControls);
this.panelControls.Dock = System.Windows.Forms.DockStyle.Left;
this.panelControls.Location = new System.Drawing.Point(0, 24);
this.panelControls.Name = "panelControls";
this.panelControls.Size = new System.Drawing.Size(191, 426);
this.panelControls.TabIndex = 1;
//
// dataGridViewControls
//
this.dataGridViewControls.AllowUserToAddRows = false;
this.dataGridViewControls.AllowUserToDeleteRows = false;
this.dataGridViewControls.AllowUserToResizeColumns = false;
this.dataGridViewControls.AllowUserToResizeRows = false;
this.dataGridViewControls.BackgroundColor = System.Drawing.SystemColors.ControlLightLight;
this.dataGridViewControls.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridViewControls.ColumnHeadersVisible = false;
this.dataGridViewControls.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.ColumnControlId,
this.ColumnControlName});
this.dataGridViewControls.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewControls.Location = new System.Drawing.Point(0, 0);
this.dataGridViewControls.MultiSelect = false;
this.dataGridViewControls.Name = "dataGridViewControls";
this.dataGridViewControls.ReadOnly = true;
this.dataGridViewControls.RowHeadersVisible = false;
this.dataGridViewControls.RowTemplate.Height = 25;
this.dataGridViewControls.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dataGridViewControls.Size = new System.Drawing.Size(191, 426);
this.dataGridViewControls.TabIndex = 0;
this.dataGridViewControls.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridViewControls_CellClick);
//
// ColumnControlId
//
this.ColumnControlId.HeaderText = "Id";
this.ColumnControlId.Name = "ColumnControlId";
this.ColumnControlId.ReadOnly = true;
this.ColumnControlId.Visible = false;
//
// ColumnControlName
//
this.ColumnControlName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.ColumnControlName.HeaderText = "ControlName";
this.ColumnControlName.Name = "ColumnControlName";
this.ColumnControlName.ReadOnly = true;
//
// ButtonShowHideControlList
//
this.ButtonShowHideControlList.Dock = System.Windows.Forms.DockStyle.Left;
this.ButtonShowHideControlList.Location = new System.Drawing.Point(191, 24);
this.ButtonShowHideControlList.Name = "ButtonShowHideControlList";
this.ButtonShowHideControlList.Size = new System.Drawing.Size(25, 426);
this.ButtonShowHideControlList.TabIndex = 3;
this.ButtonShowHideControlList.Text = ">";
this.ButtonShowHideControlList.UseVisualStyleBackColor = true;
this.ButtonShowHideControlList.Click += new System.EventHandler(this.ButtonShowHideControlList_Click);
//
// panelControl
//
this.panelControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelControl.Location = new System.Drawing.Point(216, 24);
this.panelControl.Name = "panelControl";
this.panelControl.Size = new System.Drawing.Size(584, 426);
this.panelControl.TabIndex = 4;
//
// FormMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.panelControl);
this.Controls.Add(this.ButtonShowHideControlList);
this.Controls.Add(this.panelControls);
this.Controls.Add(this.menuMain);
this.MainMenuStrip = this.menuMain;
this.Name = "FormMain";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Кафедральный портал";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.panelControls.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGridViewControls)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuMain;
private System.Windows.Forms.Panel panelControls;
private System.Windows.Forms.Button ButtonShowHideControlList;
private System.Windows.Forms.DataGridView dataGridViewControls;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnControlId;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnControlName;
private System.Windows.Forms.Panel panelControl;
}
}