126 lines
4.6 KiB
C#
126 lines
4.6 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.listBoxControls = new System.Windows.Forms.ListBox();
|
|||
|
this.splitContainerMain = new System.Windows.Forms.SplitContainer();
|
|||
|
this.ButtonShowHideControlList = new System.Windows.Forms.Button();
|
|||
|
this.panelControls.SuspendLayout();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.splitContainerMain)).BeginInit();
|
|||
|
this.splitContainerMain.SuspendLayout();
|
|||
|
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.listBoxControls);
|
|||
|
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;
|
|||
|
//
|
|||
|
// listBoxControls
|
|||
|
//
|
|||
|
this.listBoxControls.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
this.listBoxControls.FormattingEnabled = true;
|
|||
|
this.listBoxControls.ItemHeight = 15;
|
|||
|
this.listBoxControls.Location = new System.Drawing.Point(0, 0);
|
|||
|
this.listBoxControls.Name = "listBoxControls";
|
|||
|
this.listBoxControls.Size = new System.Drawing.Size(191, 426);
|
|||
|
this.listBoxControls.TabIndex = 0;
|
|||
|
//
|
|||
|
// splitContainerMain
|
|||
|
//
|
|||
|
this.splitContainerMain.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
this.splitContainerMain.Location = new System.Drawing.Point(216, 24);
|
|||
|
this.splitContainerMain.Name = "splitContainerMain";
|
|||
|
this.splitContainerMain.Panel1MinSize = 100;
|
|||
|
//
|
|||
|
// splitContainerMain.Panel2
|
|||
|
//
|
|||
|
this.splitContainerMain.Panel2.AutoScroll = true;
|
|||
|
this.splitContainerMain.Size = new System.Drawing.Size(584, 426);
|
|||
|
this.splitContainerMain.SplitterDistance = 295;
|
|||
|
this.splitContainerMain.TabIndex = 2;
|
|||
|
//
|
|||
|
// 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);
|
|||
|
//
|
|||
|
// 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.splitContainerMain);
|
|||
|
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.splitContainerMain)).EndInit();
|
|||
|
this.splitContainerMain.ResumeLayout(false);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.MenuStrip menuMain;
|
|||
|
private System.Windows.Forms.Panel panelControls;
|
|||
|
private System.Windows.Forms.ListBox listBoxControls;
|
|||
|
private System.Windows.Forms.SplitContainer splitContainerMain;
|
|||
|
private System.Windows.Forms.Button ButtonShowHideControlList;
|
|||
|
}
|
|||
|
}
|
|||
|
|