Files
data_organizer/DataOrganizer/MainForm.Designer.cs
T

116 lines
5.3 KiB
C#

namespace DataOrganizer
{
partial class MainForm
{
/// <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.MainMenu = new System.Windows.Forms.MenuStrip();
this.FileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.MainLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.ManageProfilesFileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.FileManagerFileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.MainMenu.SuspendLayout();
this.SuspendLayout();
//
// MainMenu
//
this.MainMenu.GripMargin = new System.Windows.Forms.Padding(2, 2, 0, 2);
this.MainMenu.ImageScalingSize = new System.Drawing.Size(24, 24);
this.MainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.FileMainMenu});
this.MainMenu.Location = new System.Drawing.Point(0, 0);
this.MainMenu.Name = "MainMenu";
this.MainMenu.Size = new System.Drawing.Size(800, 33);
this.MainMenu.TabIndex = 0;
this.MainMenu.Text = "menuStrip1";
//
// FileMainMenu
//
this.FileMainMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ManageProfilesFileMainMenu,
this.FileManagerFileMainMenu});
this.FileMainMenu.Name = "FileMainMenu";
this.FileMainMenu.Size = new System.Drawing.Size(54, 29);
this.FileMainMenu.Text = "&File";
//
// MainLayoutPanel
//
this.MainLayoutPanel.ColumnCount = 2;
this.MainLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.MainLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.MainLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.MainLayoutPanel.Location = new System.Drawing.Point(0, 33);
this.MainLayoutPanel.Name = "MainLayoutPanel";
this.MainLayoutPanel.RowCount = 2;
this.MainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.MainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.MainLayoutPanel.Size = new System.Drawing.Size(800, 791);
this.MainLayoutPanel.TabIndex = 1;
//
// ManageProfilesFileMainMenu
//
this.ManageProfilesFileMainMenu.Name = "ManageProfilesFileMainMenu";
this.ManageProfilesFileMainMenu.Size = new System.Drawing.Size(270, 34);
this.ManageProfilesFileMainMenu.Text = "Manage &Profiles";
this.ManageProfilesFileMainMenu.Click += new System.EventHandler(this.ManageProfilesFileMainMenu_Click);
//
// FileManagerFileMainMenu
//
this.FileManagerFileMainMenu.Name = "FileManagerFileMainMenu";
this.FileManagerFileMainMenu.Size = new System.Drawing.Size(270, 34);
this.FileManagerFileMainMenu.Text = "&File Manager";
this.FileManagerFileMainMenu.Click += new System.EventHandler(this.FileManagerFileMainMenu_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 824);
this.Controls.Add(this.MainLayoutPanel);
this.Controls.Add(this.MainMenu);
this.MainMenuStrip = this.MainMenu;
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Form1";
this.MainMenu.ResumeLayout(false);
this.MainMenu.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip MainMenu;
private System.Windows.Forms.ToolStripMenuItem FileMainMenu;
private System.Windows.Forms.TableLayoutPanel MainLayoutPanel;
private System.Windows.Forms.ToolStripMenuItem ManageProfilesFileMainMenu;
private System.Windows.Forms.ToolStripMenuItem FileManagerFileMainMenu;
}
}