150 lines
6.0 KiB
C#
150 lines
6.0 KiB
C#
namespace trakker
|
|
{
|
|
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()
|
|
{
|
|
MainForm_MenuStrip = new MenuStrip();
|
|
fileToolStripMenuItem = new ToolStripMenuItem();
|
|
MainForm_Exit_MenuItem = new ToolStripMenuItem();
|
|
MainForm_StatusStrip = new StatusStrip();
|
|
MainForm_TabControl = new TabControl();
|
|
MainForm_TabPage1 = new TabPage();
|
|
MainForm_TabPage2 = new TabPage();
|
|
button1 = new Button();
|
|
MainForm_MenuStrip.SuspendLayout();
|
|
MainForm_TabControl.SuspendLayout();
|
|
MainForm_TabPage1.SuspendLayout();
|
|
SuspendLayout();
|
|
//
|
|
// MainForm_MenuStrip
|
|
//
|
|
MainForm_MenuStrip.ImageScalingSize = new Size(32, 32);
|
|
MainForm_MenuStrip.Items.AddRange(new ToolStripItem[] { fileToolStripMenuItem });
|
|
MainForm_MenuStrip.Location = new Point(0, 0);
|
|
MainForm_MenuStrip.Name = "MainForm_MenuStrip";
|
|
MainForm_MenuStrip.Size = new Size(1696, 40);
|
|
MainForm_MenuStrip.TabIndex = 0;
|
|
MainForm_MenuStrip.Text = "menuStrip1";
|
|
//
|
|
// fileToolStripMenuItem
|
|
//
|
|
fileToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { MainForm_Exit_MenuItem });
|
|
fileToolStripMenuItem.Name = "fileToolStripMenuItem";
|
|
fileToolStripMenuItem.Size = new Size(71, 36);
|
|
fileToolStripMenuItem.Text = "File";
|
|
//
|
|
// MainForm_Exit_MenuItem
|
|
//
|
|
MainForm_Exit_MenuItem.Name = "MainForm_Exit_MenuItem";
|
|
MainForm_Exit_MenuItem.Size = new Size(184, 44);
|
|
MainForm_Exit_MenuItem.Text = "Exit";
|
|
MainForm_Exit_MenuItem.Click += MainForm_Exit_MenuItem_Click;
|
|
//
|
|
// MainForm_StatusStrip
|
|
//
|
|
MainForm_StatusStrip.ImageScalingSize = new Size(32, 32);
|
|
MainForm_StatusStrip.Location = new Point(0, 1074);
|
|
MainForm_StatusStrip.Name = "MainForm_StatusStrip";
|
|
MainForm_StatusStrip.Size = new Size(1696, 22);
|
|
MainForm_StatusStrip.TabIndex = 1;
|
|
MainForm_StatusStrip.Text = "MainForm_StatusStrip";
|
|
//
|
|
// MainForm_TabControl
|
|
//
|
|
MainForm_TabControl.Controls.Add(MainForm_TabPage1);
|
|
MainForm_TabControl.Controls.Add(MainForm_TabPage2);
|
|
MainForm_TabControl.Dock = DockStyle.Fill;
|
|
MainForm_TabControl.Location = new Point(0, 40);
|
|
MainForm_TabControl.Name = "MainForm_TabControl";
|
|
MainForm_TabControl.SelectedIndex = 0;
|
|
MainForm_TabControl.Size = new Size(1696, 1034);
|
|
MainForm_TabControl.TabIndex = 2;
|
|
//
|
|
// MainForm_TabPage1
|
|
//
|
|
MainForm_TabPage1.Controls.Add(button1);
|
|
MainForm_TabPage1.Location = new Point(8, 46);
|
|
MainForm_TabPage1.Name = "MainForm_TabPage1";
|
|
MainForm_TabPage1.Padding = new Padding(3);
|
|
MainForm_TabPage1.Size = new Size(1680, 980);
|
|
MainForm_TabPage1.TabIndex = 0;
|
|
MainForm_TabPage1.Text = "Tab 1";
|
|
MainForm_TabPage1.UseVisualStyleBackColor = true;
|
|
//
|
|
// MainForm_TabPage2
|
|
//
|
|
MainForm_TabPage2.Location = new Point(8, 46);
|
|
MainForm_TabPage2.Name = "MainForm_TabPage2";
|
|
MainForm_TabPage2.Padding = new Padding(3);
|
|
MainForm_TabPage2.Size = new Size(1680, 1015);
|
|
MainForm_TabPage2.TabIndex = 1;
|
|
MainForm_TabPage2.Text = "Tab 2";
|
|
MainForm_TabPage2.UseVisualStyleBackColor = true;
|
|
//
|
|
// button1
|
|
//
|
|
button1.Location = new Point(39, 47);
|
|
button1.Name = "button1";
|
|
button1.Size = new Size(150, 46);
|
|
button1.TabIndex = 0;
|
|
button1.Text = "button1";
|
|
button1.UseVisualStyleBackColor = true;
|
|
button1.Click += button1_Click;
|
|
//
|
|
// MainForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(13F, 32F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(1696, 1096);
|
|
Controls.Add(MainForm_TabControl);
|
|
Controls.Add(MainForm_StatusStrip);
|
|
Controls.Add(MainForm_MenuStrip);
|
|
MainMenuStrip = MainForm_MenuStrip;
|
|
Name = "MainForm";
|
|
Text = "MainForm";
|
|
MainForm_MenuStrip.ResumeLayout(false);
|
|
MainForm_MenuStrip.PerformLayout();
|
|
MainForm_TabControl.ResumeLayout(false);
|
|
MainForm_TabPage1.ResumeLayout(false);
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private MenuStrip MainForm_MenuStrip;
|
|
private StatusStrip MainForm_StatusStrip;
|
|
private TabControl MainForm_TabControl;
|
|
private TabPage MainForm_TabPage1;
|
|
private TabPage MainForm_TabPage2;
|
|
private ToolStripMenuItem fileToolStripMenuItem;
|
|
private ToolStripMenuItem MainForm_Exit_MenuItem;
|
|
private Button button1;
|
|
}
|
|
}
|