189 lines
8.1 KiB
C#
189 lines
8.1 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();
|
|
tabControlMainForm = new TabControl();
|
|
MainForm_TabPage1 = new TabPage();
|
|
button1 = new Button();
|
|
MainForm_TabPage2 = new TabPage();
|
|
tableLayoutPanel1Tab2 = new TableLayoutPanel();
|
|
dataGridViewClients = new DataGridView();
|
|
MainForm_MenuStrip.SuspendLayout();
|
|
tabControlMainForm.SuspendLayout();
|
|
MainForm_TabPage1.SuspendLayout();
|
|
MainForm_TabPage2.SuspendLayout();
|
|
tableLayoutPanel1Tab2.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewClients).BeginInit();
|
|
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(1343, 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, 983);
|
|
MainForm_StatusStrip.Name = "MainForm_StatusStrip";
|
|
MainForm_StatusStrip.Size = new Size(1343, 22);
|
|
MainForm_StatusStrip.TabIndex = 1;
|
|
MainForm_StatusStrip.Text = "MainForm_StatusStrip";
|
|
//
|
|
// tabControlMainForm
|
|
//
|
|
tabControlMainForm.Controls.Add(MainForm_TabPage1);
|
|
tabControlMainForm.Controls.Add(MainForm_TabPage2);
|
|
tabControlMainForm.Dock = DockStyle.Fill;
|
|
tabControlMainForm.Location = new Point(0, 40);
|
|
tabControlMainForm.Name = "tabControlMainForm";
|
|
tabControlMainForm.SelectedIndex = 0;
|
|
tabControlMainForm.Size = new Size(1343, 943);
|
|
tabControlMainForm.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(1327, 889);
|
|
MainForm_TabPage1.TabIndex = 0;
|
|
MainForm_TabPage1.Text = "Tab 1";
|
|
MainForm_TabPage1.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_TabPage2
|
|
//
|
|
MainForm_TabPage2.Controls.Add(tableLayoutPanel1Tab2);
|
|
MainForm_TabPage2.Location = new Point(8, 46);
|
|
MainForm_TabPage2.Name = "MainForm_TabPage2";
|
|
MainForm_TabPage2.Padding = new Padding(3);
|
|
MainForm_TabPage2.Size = new Size(1327, 889);
|
|
MainForm_TabPage2.TabIndex = 1;
|
|
MainForm_TabPage2.Text = "Tab 2";
|
|
MainForm_TabPage2.UseVisualStyleBackColor = true;
|
|
//
|
|
// tableLayoutPanel1Tab2
|
|
//
|
|
tableLayoutPanel1Tab2.ColumnCount = 1;
|
|
tableLayoutPanel1Tab2.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanel1Tab2.Controls.Add(dataGridViewClients, 0, 1);
|
|
tableLayoutPanel1Tab2.Dock = DockStyle.Fill;
|
|
tableLayoutPanel1Tab2.Location = new Point(3, 3);
|
|
tableLayoutPanel1Tab2.Name = "tableLayoutPanel1Tab2";
|
|
tableLayoutPanel1Tab2.RowCount = 3;
|
|
tableLayoutPanel1Tab2.RowStyles.Add(new RowStyle(SizeType.Absolute, 1F));
|
|
tableLayoutPanel1Tab2.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanel1Tab2.RowStyles.Add(new RowStyle(SizeType.Absolute, 200F));
|
|
tableLayoutPanel1Tab2.Size = new Size(1321, 883);
|
|
tableLayoutPanel1Tab2.TabIndex = 0;
|
|
//
|
|
// dataGridViewClients
|
|
//
|
|
dataGridViewClients.AllowUserToAddRows = false;
|
|
dataGridViewClients.AllowUserToDeleteRows = false;
|
|
dataGridViewClients.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridViewClients.Dock = DockStyle.Fill;
|
|
dataGridViewClients.Location = new Point(3, 4);
|
|
dataGridViewClients.Name = "dataGridViewClients";
|
|
dataGridViewClients.ReadOnly = true;
|
|
dataGridViewClients.RowHeadersWidth = 82;
|
|
dataGridViewClients.Size = new Size(1315, 676);
|
|
dataGridViewClients.TabIndex = 0;
|
|
//
|
|
// MainForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(13F, 32F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(1343, 1005);
|
|
Controls.Add(tabControlMainForm);
|
|
Controls.Add(MainForm_StatusStrip);
|
|
Controls.Add(MainForm_MenuStrip);
|
|
MainMenuStrip = MainForm_MenuStrip;
|
|
Name = "MainForm";
|
|
Text = "MainForm";
|
|
MainForm_MenuStrip.ResumeLayout(false);
|
|
MainForm_MenuStrip.PerformLayout();
|
|
tabControlMainForm.ResumeLayout(false);
|
|
MainForm_TabPage1.ResumeLayout(false);
|
|
MainForm_TabPage2.ResumeLayout(false);
|
|
tableLayoutPanel1Tab2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewClients).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private MenuStrip MainForm_MenuStrip;
|
|
private StatusStrip MainForm_StatusStrip;
|
|
private TabControl tabControlMainForm;
|
|
private TabPage MainForm_TabPage1;
|
|
private TabPage MainForm_TabPage2;
|
|
private ToolStripMenuItem fileToolStripMenuItem;
|
|
private ToolStripMenuItem MainForm_Exit_MenuItem;
|
|
private Button button1;
|
|
private TableLayoutPanel tableLayoutPanel1Tab2;
|
|
private DataGridView dataGridViewClients;
|
|
}
|
|
}
|