474 lines
24 KiB
C#
474 lines
24 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()
|
|
{
|
|
components = new System.ComponentModel.Container();
|
|
MainForm_MenuStrip = new MenuStrip();
|
|
fileToolStripMenuItem = new ToolStripMenuItem();
|
|
MainForm_Exit_MenuItem = new ToolStripMenuItem();
|
|
MainForm_StatusStrip = new StatusStrip();
|
|
tabControlMainForm = new TabControl();
|
|
MainForm_TabPage1 = new TabPage();
|
|
MainForm_TabPage2 = new TabPage();
|
|
tableLayoutPanelClients1 = new TableLayoutPanel();
|
|
dataGridViewClients = new DataGridView();
|
|
MainForm_TabPage3 = new TabPage();
|
|
tableLayoutPanelProjects1 = new TableLayoutPanel();
|
|
dataGridViewProjects = new DataGridView();
|
|
MainForm_TabPage4 = new TabPage();
|
|
tableLayoutPanelTasks1 = new TableLayoutPanel();
|
|
splitContainerTasks1 = new SplitContainer();
|
|
treeViewTasks1 = new TreeView();
|
|
contextMenuStripTreeviewTasks = new ContextMenuStrip(components);
|
|
addTaskSubtaskToolStripMenuItem = new ToolStripMenuItem();
|
|
editThisTaskSubtaskToolStripMenuItem = new ToolStripMenuItem();
|
|
deleteThisTaskSubtaskToolStripMenuItem = new ToolStripMenuItem();
|
|
toolStripSeparator1 = new ToolStripSeparator();
|
|
addACommentToolStripMenuItem = new ToolStripMenuItem();
|
|
splitContainerTasks2 = new SplitContainer();
|
|
dataGridViewProjectTasks = new DataGridView();
|
|
tableLayoutPanelTasks2 = new TableLayoutPanel();
|
|
groupBoxTaskDescription = new GroupBox();
|
|
richTextBoxTaskDescription = new RichTextBox();
|
|
groupBoxTaskComments = new GroupBox();
|
|
richTextBoxTaskComments = new RichTextBox();
|
|
MainForm_MenuStrip.SuspendLayout();
|
|
tabControlMainForm.SuspendLayout();
|
|
MainForm_TabPage2.SuspendLayout();
|
|
tableLayoutPanelClients1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewClients).BeginInit();
|
|
MainForm_TabPage3.SuspendLayout();
|
|
tableLayoutPanelProjects1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewProjects).BeginInit();
|
|
MainForm_TabPage4.SuspendLayout();
|
|
tableLayoutPanelTasks1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)splitContainerTasks1).BeginInit();
|
|
splitContainerTasks1.Panel1.SuspendLayout();
|
|
splitContainerTasks1.Panel2.SuspendLayout();
|
|
splitContainerTasks1.SuspendLayout();
|
|
contextMenuStripTreeviewTasks.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)splitContainerTasks2).BeginInit();
|
|
splitContainerTasks2.Panel1.SuspendLayout();
|
|
splitContainerTasks2.Panel2.SuspendLayout();
|
|
splitContainerTasks2.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewProjectTasks).BeginInit();
|
|
tableLayoutPanelTasks2.SuspendLayout();
|
|
groupBoxTaskDescription.SuspendLayout();
|
|
groupBoxTaskComments.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(1878, 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, 1060);
|
|
MainForm_StatusStrip.Name = "MainForm_StatusStrip";
|
|
MainForm_StatusStrip.Size = new Size(1878, 22);
|
|
MainForm_StatusStrip.TabIndex = 1;
|
|
MainForm_StatusStrip.Text = "MainForm_StatusStrip";
|
|
//
|
|
// tabControlMainForm
|
|
//
|
|
tabControlMainForm.Controls.Add(MainForm_TabPage1);
|
|
tabControlMainForm.Controls.Add(MainForm_TabPage2);
|
|
tabControlMainForm.Controls.Add(MainForm_TabPage3);
|
|
tabControlMainForm.Controls.Add(MainForm_TabPage4);
|
|
tabControlMainForm.Dock = DockStyle.Fill;
|
|
tabControlMainForm.Location = new Point(0, 40);
|
|
tabControlMainForm.Name = "tabControlMainForm";
|
|
tabControlMainForm.SelectedIndex = 0;
|
|
tabControlMainForm.Size = new Size(1878, 1020);
|
|
tabControlMainForm.TabIndex = 2;
|
|
//
|
|
// MainForm_TabPage1
|
|
//
|
|
MainForm_TabPage1.Location = new Point(8, 46);
|
|
MainForm_TabPage1.Name = "MainForm_TabPage1";
|
|
MainForm_TabPage1.Padding = new Padding(3);
|
|
MainForm_TabPage1.Size = new Size(1862, 966);
|
|
MainForm_TabPage1.TabIndex = 0;
|
|
MainForm_TabPage1.Text = "Tab 1";
|
|
MainForm_TabPage1.UseVisualStyleBackColor = true;
|
|
//
|
|
// MainForm_TabPage2
|
|
//
|
|
MainForm_TabPage2.Controls.Add(tableLayoutPanelClients1);
|
|
MainForm_TabPage2.Location = new Point(8, 46);
|
|
MainForm_TabPage2.Name = "MainForm_TabPage2";
|
|
MainForm_TabPage2.Padding = new Padding(3);
|
|
MainForm_TabPage2.Size = new Size(1862, 966);
|
|
MainForm_TabPage2.TabIndex = 1;
|
|
MainForm_TabPage2.Text = "Tab 2";
|
|
MainForm_TabPage2.UseVisualStyleBackColor = true;
|
|
//
|
|
// tableLayoutPanelClients1
|
|
//
|
|
tableLayoutPanelClients1.ColumnCount = 1;
|
|
tableLayoutPanelClients1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanelClients1.Controls.Add(dataGridViewClients, 0, 1);
|
|
tableLayoutPanelClients1.Dock = DockStyle.Fill;
|
|
tableLayoutPanelClients1.Location = new Point(3, 3);
|
|
tableLayoutPanelClients1.Name = "tableLayoutPanelClients1";
|
|
tableLayoutPanelClients1.RowCount = 3;
|
|
tableLayoutPanelClients1.RowStyles.Add(new RowStyle(SizeType.Absolute, 1F));
|
|
tableLayoutPanelClients1.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanelClients1.RowStyles.Add(new RowStyle(SizeType.Percent, 0F));
|
|
tableLayoutPanelClients1.Size = new Size(1856, 960);
|
|
tableLayoutPanelClients1.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(1850, 953);
|
|
dataGridViewClients.TabIndex = 0;
|
|
//
|
|
// MainForm_TabPage3
|
|
//
|
|
MainForm_TabPage3.Controls.Add(tableLayoutPanelProjects1);
|
|
MainForm_TabPage3.Location = new Point(8, 46);
|
|
MainForm_TabPage3.Name = "MainForm_TabPage3";
|
|
MainForm_TabPage3.Size = new Size(1862, 966);
|
|
MainForm_TabPage3.TabIndex = 2;
|
|
MainForm_TabPage3.Text = "Tab 3";
|
|
MainForm_TabPage3.UseVisualStyleBackColor = true;
|
|
//
|
|
// tableLayoutPanelProjects1
|
|
//
|
|
tableLayoutPanelProjects1.ColumnCount = 1;
|
|
tableLayoutPanelProjects1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanelProjects1.Controls.Add(dataGridViewProjects, 0, 1);
|
|
tableLayoutPanelProjects1.Dock = DockStyle.Fill;
|
|
tableLayoutPanelProjects1.Location = new Point(0, 0);
|
|
tableLayoutPanelProjects1.Name = "tableLayoutPanelProjects1";
|
|
tableLayoutPanelProjects1.RowCount = 3;
|
|
tableLayoutPanelProjects1.RowStyles.Add(new RowStyle(SizeType.Absolute, 1F));
|
|
tableLayoutPanelProjects1.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanelProjects1.RowStyles.Add(new RowStyle(SizeType.Percent, 0F));
|
|
tableLayoutPanelProjects1.Size = new Size(1862, 966);
|
|
tableLayoutPanelProjects1.TabIndex = 1;
|
|
//
|
|
// dataGridViewProjects
|
|
//
|
|
dataGridViewProjects.AllowUserToAddRows = false;
|
|
dataGridViewProjects.AllowUserToDeleteRows = false;
|
|
dataGridViewProjects.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridViewProjects.Dock = DockStyle.Fill;
|
|
dataGridViewProjects.Location = new Point(3, 4);
|
|
dataGridViewProjects.Name = "dataGridViewProjects";
|
|
dataGridViewProjects.ReadOnly = true;
|
|
dataGridViewProjects.RowHeadersWidth = 82;
|
|
dataGridViewProjects.Size = new Size(1856, 959);
|
|
dataGridViewProjects.TabIndex = 0;
|
|
//
|
|
// MainForm_TabPage4
|
|
//
|
|
MainForm_TabPage4.Controls.Add(tableLayoutPanelTasks1);
|
|
MainForm_TabPage4.Location = new Point(8, 46);
|
|
MainForm_TabPage4.Name = "MainForm_TabPage4";
|
|
MainForm_TabPage4.Size = new Size(1862, 966);
|
|
MainForm_TabPage4.TabIndex = 3;
|
|
MainForm_TabPage4.Text = "Tab 4";
|
|
MainForm_TabPage4.UseVisualStyleBackColor = true;
|
|
//
|
|
// tableLayoutPanelTasks1
|
|
//
|
|
tableLayoutPanelTasks1.ColumnCount = 1;
|
|
tableLayoutPanelTasks1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanelTasks1.Controls.Add(splitContainerTasks1, 0, 1);
|
|
tableLayoutPanelTasks1.Dock = DockStyle.Fill;
|
|
tableLayoutPanelTasks1.Location = new Point(0, 0);
|
|
tableLayoutPanelTasks1.Name = "tableLayoutPanelTasks1";
|
|
tableLayoutPanelTasks1.RowCount = 3;
|
|
tableLayoutPanelTasks1.RowStyles.Add(new RowStyle(SizeType.Percent, 0F));
|
|
tableLayoutPanelTasks1.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanelTasks1.RowStyles.Add(new RowStyle(SizeType.Percent, 0F));
|
|
tableLayoutPanelTasks1.Size = new Size(1862, 966);
|
|
tableLayoutPanelTasks1.TabIndex = 0;
|
|
//
|
|
// splitContainerTasks1
|
|
//
|
|
splitContainerTasks1.Dock = DockStyle.Fill;
|
|
splitContainerTasks1.Location = new Point(3, 3);
|
|
splitContainerTasks1.Name = "splitContainerTasks1";
|
|
//
|
|
// splitContainerTasks1.Panel1
|
|
//
|
|
splitContainerTasks1.Panel1.Controls.Add(treeViewTasks1);
|
|
//
|
|
// splitContainerTasks1.Panel2
|
|
//
|
|
splitContainerTasks1.Panel2.Controls.Add(splitContainerTasks2);
|
|
splitContainerTasks1.Size = new Size(1856, 960);
|
|
splitContainerTasks1.SplitterDistance = 618;
|
|
splitContainerTasks1.TabIndex = 0;
|
|
//
|
|
// treeViewTasks1
|
|
//
|
|
treeViewTasks1.ContextMenuStrip = contextMenuStripTreeviewTasks;
|
|
treeViewTasks1.Dock = DockStyle.Fill;
|
|
treeViewTasks1.Location = new Point(0, 0);
|
|
treeViewTasks1.Name = "treeViewTasks1";
|
|
treeViewTasks1.Size = new Size(618, 960);
|
|
treeViewTasks1.TabIndex = 0;
|
|
//
|
|
// contextMenuStripTreeviewTasks
|
|
//
|
|
contextMenuStripTreeviewTasks.ImageScalingSize = new Size(32, 32);
|
|
contextMenuStripTreeviewTasks.Items.AddRange(new ToolStripItem[] { addTaskSubtaskToolStripMenuItem, editThisTaskSubtaskToolStripMenuItem, deleteThisTaskSubtaskToolStripMenuItem, toolStripSeparator1, addACommentToolStripMenuItem });
|
|
contextMenuStripTreeviewTasks.Name = "contextMenuStripTreeviewTasks";
|
|
contextMenuStripTreeviewTasks.Size = new Size(371, 162);
|
|
//
|
|
// addTaskSubtaskToolStripMenuItem
|
|
//
|
|
addTaskSubtaskToolStripMenuItem.Name = "addTaskSubtaskToolStripMenuItem";
|
|
addTaskSubtaskToolStripMenuItem.Size = new Size(370, 38);
|
|
addTaskSubtaskToolStripMenuItem.Text = "Add Task / Sub-task";
|
|
addTaskSubtaskToolStripMenuItem.Click += addTaskSubtaskToolStripMenuItem_Click;
|
|
//
|
|
// editThisTaskSubtaskToolStripMenuItem
|
|
//
|
|
editThisTaskSubtaskToolStripMenuItem.Name = "editThisTaskSubtaskToolStripMenuItem";
|
|
editThisTaskSubtaskToolStripMenuItem.Size = new Size(370, 38);
|
|
editThisTaskSubtaskToolStripMenuItem.Text = "Edit this Task / Sub-task";
|
|
editThisTaskSubtaskToolStripMenuItem.Click += editThisTaskSubtaskToolStripMenuItem_Click;
|
|
//
|
|
// deleteThisTaskSubtaskToolStripMenuItem
|
|
//
|
|
deleteThisTaskSubtaskToolStripMenuItem.Name = "deleteThisTaskSubtaskToolStripMenuItem";
|
|
deleteThisTaskSubtaskToolStripMenuItem.Size = new Size(370, 38);
|
|
deleteThisTaskSubtaskToolStripMenuItem.Text = "Delete this Task / Sub-task";
|
|
deleteThisTaskSubtaskToolStripMenuItem.Click += deleteThisTaskSubtaskToolStripMenuItem_Click;
|
|
//
|
|
// toolStripSeparator1
|
|
//
|
|
toolStripSeparator1.Name = "toolStripSeparator1";
|
|
toolStripSeparator1.Size = new Size(367, 6);
|
|
//
|
|
// addACommentToolStripMenuItem
|
|
//
|
|
addACommentToolStripMenuItem.Name = "addACommentToolStripMenuItem";
|
|
addACommentToolStripMenuItem.Size = new Size(370, 38);
|
|
addACommentToolStripMenuItem.Text = "Add a comment";
|
|
addACommentToolStripMenuItem.Click += addACommentToolStripMenuItem_Click;
|
|
//
|
|
// splitContainerTasks2
|
|
//
|
|
splitContainerTasks2.Dock = DockStyle.Fill;
|
|
splitContainerTasks2.Location = new Point(0, 0);
|
|
splitContainerTasks2.Name = "splitContainerTasks2";
|
|
splitContainerTasks2.Orientation = Orientation.Horizontal;
|
|
//
|
|
// splitContainerTasks2.Panel1
|
|
//
|
|
splitContainerTasks2.Panel1.Controls.Add(dataGridViewProjectTasks);
|
|
//
|
|
// splitContainerTasks2.Panel2
|
|
//
|
|
splitContainerTasks2.Panel2.Controls.Add(tableLayoutPanelTasks2);
|
|
splitContainerTasks2.Size = new Size(1234, 960);
|
|
splitContainerTasks2.SplitterDistance = 411;
|
|
splitContainerTasks2.TabIndex = 0;
|
|
//
|
|
// dataGridViewProjectTasks
|
|
//
|
|
dataGridViewProjectTasks.AllowUserToAddRows = false;
|
|
dataGridViewProjectTasks.AllowUserToDeleteRows = false;
|
|
dataGridViewProjectTasks.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridViewProjectTasks.Dock = DockStyle.Fill;
|
|
dataGridViewProjectTasks.Location = new Point(0, 0);
|
|
dataGridViewProjectTasks.Name = "dataGridViewProjectTasks";
|
|
dataGridViewProjectTasks.ReadOnly = true;
|
|
dataGridViewProjectTasks.RowHeadersWidth = 82;
|
|
dataGridViewProjectTasks.Size = new Size(1234, 411);
|
|
dataGridViewProjectTasks.TabIndex = 0;
|
|
//
|
|
// tableLayoutPanelTasks2
|
|
//
|
|
tableLayoutPanelTasks2.ColumnCount = 1;
|
|
tableLayoutPanelTasks2.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanelTasks2.Controls.Add(groupBoxTaskDescription, 0, 0);
|
|
tableLayoutPanelTasks2.Controls.Add(groupBoxTaskComments, 0, 1);
|
|
tableLayoutPanelTasks2.Dock = DockStyle.Fill;
|
|
tableLayoutPanelTasks2.Location = new Point(0, 0);
|
|
tableLayoutPanelTasks2.Name = "tableLayoutPanelTasks2";
|
|
tableLayoutPanelTasks2.RowCount = 2;
|
|
tableLayoutPanelTasks2.RowStyles.Add(new RowStyle(SizeType.Percent, 25F));
|
|
tableLayoutPanelTasks2.RowStyles.Add(new RowStyle(SizeType.Percent, 75F));
|
|
tableLayoutPanelTasks2.Size = new Size(1234, 545);
|
|
tableLayoutPanelTasks2.TabIndex = 0;
|
|
//
|
|
// groupBoxTaskDescription
|
|
//
|
|
groupBoxTaskDescription.Controls.Add(richTextBoxTaskDescription);
|
|
groupBoxTaskDescription.Dock = DockStyle.Fill;
|
|
groupBoxTaskDescription.Location = new Point(3, 3);
|
|
groupBoxTaskDescription.Name = "groupBoxTaskDescription";
|
|
groupBoxTaskDescription.Size = new Size(1228, 130);
|
|
groupBoxTaskDescription.TabIndex = 0;
|
|
groupBoxTaskDescription.TabStop = false;
|
|
groupBoxTaskDescription.Text = "Description";
|
|
//
|
|
// richTextBoxTaskDescription
|
|
//
|
|
richTextBoxTaskDescription.BackColor = SystemColors.Control;
|
|
richTextBoxTaskDescription.BorderStyle = BorderStyle.None;
|
|
richTextBoxTaskDescription.Dock = DockStyle.Fill;
|
|
richTextBoxTaskDescription.Location = new Point(3, 35);
|
|
richTextBoxTaskDescription.Name = "richTextBoxTaskDescription";
|
|
richTextBoxTaskDescription.ReadOnly = true;
|
|
richTextBoxTaskDescription.Size = new Size(1222, 92);
|
|
richTextBoxTaskDescription.TabIndex = 0;
|
|
richTextBoxTaskDescription.Text = "";
|
|
//
|
|
// groupBoxTaskComments
|
|
//
|
|
groupBoxTaskComments.Controls.Add(richTextBoxTaskComments);
|
|
groupBoxTaskComments.Dock = DockStyle.Fill;
|
|
groupBoxTaskComments.Location = new Point(3, 139);
|
|
groupBoxTaskComments.Name = "groupBoxTaskComments";
|
|
groupBoxTaskComments.Size = new Size(1228, 403);
|
|
groupBoxTaskComments.TabIndex = 1;
|
|
groupBoxTaskComments.TabStop = false;
|
|
groupBoxTaskComments.Text = "Comments";
|
|
//
|
|
// richTextBoxTaskComments
|
|
//
|
|
richTextBoxTaskComments.BackColor = SystemColors.Control;
|
|
richTextBoxTaskComments.BorderStyle = BorderStyle.None;
|
|
richTextBoxTaskComments.Dock = DockStyle.Fill;
|
|
richTextBoxTaskComments.Location = new Point(3, 35);
|
|
richTextBoxTaskComments.Name = "richTextBoxTaskComments";
|
|
richTextBoxTaskComments.ReadOnly = true;
|
|
richTextBoxTaskComments.Size = new Size(1222, 365);
|
|
richTextBoxTaskComments.TabIndex = 1;
|
|
richTextBoxTaskComments.Text = "";
|
|
//
|
|
// MainForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(13F, 32F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(1878, 1082);
|
|
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_TabPage2.ResumeLayout(false);
|
|
tableLayoutPanelClients1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewClients).EndInit();
|
|
MainForm_TabPage3.ResumeLayout(false);
|
|
tableLayoutPanelProjects1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewProjects).EndInit();
|
|
MainForm_TabPage4.ResumeLayout(false);
|
|
tableLayoutPanelTasks1.ResumeLayout(false);
|
|
splitContainerTasks1.Panel1.ResumeLayout(false);
|
|
splitContainerTasks1.Panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)splitContainerTasks1).EndInit();
|
|
splitContainerTasks1.ResumeLayout(false);
|
|
contextMenuStripTreeviewTasks.ResumeLayout(false);
|
|
splitContainerTasks2.Panel1.ResumeLayout(false);
|
|
splitContainerTasks2.Panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)splitContainerTasks2).EndInit();
|
|
splitContainerTasks2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewProjectTasks).EndInit();
|
|
tableLayoutPanelTasks2.ResumeLayout(false);
|
|
groupBoxTaskDescription.ResumeLayout(false);
|
|
groupBoxTaskComments.ResumeLayout(false);
|
|
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 TableLayoutPanel tableLayoutPanelClients1;
|
|
private DataGridView dataGridViewClients;
|
|
private TabPage MainForm_TabPage3;
|
|
private TableLayoutPanel tableLayoutPanelProjects1;
|
|
private DataGridView dataGridViewProjects;
|
|
private TabPage MainForm_TabPage4;
|
|
private TableLayoutPanel tableLayoutPanelTasks1;
|
|
private SplitContainer splitContainerTasks1;
|
|
private TreeView treeViewTasks1;
|
|
private ContextMenuStrip contextMenuStripTreeviewTasks;
|
|
private ToolStripMenuItem addTaskSubtaskToolStripMenuItem;
|
|
private ToolStripMenuItem editThisTaskSubtaskToolStripMenuItem;
|
|
private ToolStripMenuItem deleteThisTaskSubtaskToolStripMenuItem;
|
|
private ToolStripSeparator toolStripSeparator1;
|
|
private ToolStripMenuItem addACommentToolStripMenuItem;
|
|
private SplitContainer splitContainerTasks2;
|
|
private DataGridView dataGridViewProjectTasks;
|
|
private TableLayoutPanel tableLayoutPanelTasks2;
|
|
private GroupBox groupBoxTaskDescription;
|
|
private GroupBox groupBoxTaskComments;
|
|
private RichTextBox richTextBoxTaskDescription;
|
|
private RichTextBox richTextBoxTaskComments;
|
|
}
|
|
}
|