411 lines
18 KiB
C#
411 lines
18 KiB
C#
namespace trakker.Forms
|
|
{
|
|
partial class TaskForm
|
|
{
|
|
/// <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()
|
|
{
|
|
groupBoxNewTask = new GroupBox();
|
|
tableLayoutPanel1 = new TableLayoutPanel();
|
|
tableLayoutPanel3 = new TableLayoutPanel();
|
|
buttonOkay = new Button();
|
|
buttonCancel = new Button();
|
|
labelCreatedUpdatedDT = new Label();
|
|
tableLayoutPanel2 = new TableLayoutPanel();
|
|
tableLayoutPanel4 = new TableLayoutPanel();
|
|
dateTimePickerDueDate = new DateTimePicker();
|
|
comboBoxStatus = new ComboBox();
|
|
labelPriority = new Label();
|
|
comboBoxPriority = new ComboBox();
|
|
labelDueDate = new Label();
|
|
labelStatus = new Label();
|
|
richTextBoxDescription = new RichTextBox();
|
|
labelDescription = new Label();
|
|
textBoxTitle = new TextBox();
|
|
labelTitle = new Label();
|
|
labelHoursEst = new Label();
|
|
tableLayoutPanel6 = new TableLayoutPanel();
|
|
labelHoursActual = new Label();
|
|
textBoxHoursEst = new TextBox();
|
|
textBoxHoursActual = new TextBox();
|
|
labelRate = new Label();
|
|
textBoxRate = new TextBox();
|
|
groupBoxNewTask.SuspendLayout();
|
|
tableLayoutPanel1.SuspendLayout();
|
|
tableLayoutPanel3.SuspendLayout();
|
|
tableLayoutPanel2.SuspendLayout();
|
|
tableLayoutPanel4.SuspendLayout();
|
|
tableLayoutPanel6.SuspendLayout();
|
|
SuspendLayout();
|
|
//
|
|
// groupBoxNewTask
|
|
//
|
|
groupBoxNewTask.Controls.Add(tableLayoutPanel1);
|
|
groupBoxNewTask.Dock = DockStyle.Fill;
|
|
groupBoxNewTask.Location = new Point(0, 0);
|
|
groupBoxNewTask.Name = "groupBoxNewTask";
|
|
groupBoxNewTask.Size = new Size(1181, 372);
|
|
groupBoxNewTask.TabIndex = 2;
|
|
groupBoxNewTask.TabStop = false;
|
|
groupBoxNewTask.Text = "Task";
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
tableLayoutPanel1.ColumnCount = 1;
|
|
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanel1.Controls.Add(tableLayoutPanel3, 0, 1);
|
|
tableLayoutPanel1.Controls.Add(tableLayoutPanel2, 0, 0);
|
|
tableLayoutPanel1.Dock = DockStyle.Fill;
|
|
tableLayoutPanel1.Location = new Point(3, 35);
|
|
tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
tableLayoutPanel1.RowCount = 2;
|
|
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Absolute, 75F));
|
|
tableLayoutPanel1.Size = new Size(1175, 334);
|
|
tableLayoutPanel1.TabIndex = 0;
|
|
//
|
|
// tableLayoutPanel3
|
|
//
|
|
tableLayoutPanel3.ColumnCount = 3;
|
|
tableLayoutPanel3.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanel3.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 200F));
|
|
tableLayoutPanel3.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 200F));
|
|
tableLayoutPanel3.Controls.Add(buttonOkay, 1, 0);
|
|
tableLayoutPanel3.Controls.Add(buttonCancel, 2, 0);
|
|
tableLayoutPanel3.Controls.Add(labelCreatedUpdatedDT, 0, 0);
|
|
tableLayoutPanel3.Dock = DockStyle.Fill;
|
|
tableLayoutPanel3.Location = new Point(3, 262);
|
|
tableLayoutPanel3.Name = "tableLayoutPanel3";
|
|
tableLayoutPanel3.RowCount = 1;
|
|
tableLayoutPanel3.RowStyles.Add(new RowStyle(SizeType.Absolute, 50F));
|
|
tableLayoutPanel3.Size = new Size(1169, 69);
|
|
tableLayoutPanel3.TabIndex = 99;
|
|
//
|
|
// buttonOkay
|
|
//
|
|
buttonOkay.Dock = DockStyle.Fill;
|
|
buttonOkay.Location = new Point(772, 3);
|
|
buttonOkay.Margin = new Padding(3, 3, 3, 15);
|
|
buttonOkay.Name = "buttonOkay";
|
|
buttonOkay.Size = new Size(194, 51);
|
|
buttonOkay.TabIndex = 9;
|
|
buttonOkay.Text = "Okay";
|
|
buttonOkay.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Dock = DockStyle.Fill;
|
|
buttonCancel.Location = new Point(972, 3);
|
|
buttonCancel.Margin = new Padding(3, 3, 3, 15);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(194, 51);
|
|
buttonCancel.TabIndex = 99;
|
|
buttonCancel.TabStop = false;
|
|
buttonCancel.Text = "Cancel";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// labelCreatedUpdatedDT
|
|
//
|
|
labelCreatedUpdatedDT.AutoSize = true;
|
|
labelCreatedUpdatedDT.Dock = DockStyle.Fill;
|
|
labelCreatedUpdatedDT.Location = new Point(3, 0);
|
|
labelCreatedUpdatedDT.Name = "labelCreatedUpdatedDT";
|
|
labelCreatedUpdatedDT.Size = new Size(763, 69);
|
|
labelCreatedUpdatedDT.TabIndex = 2;
|
|
labelCreatedUpdatedDT.Text = "Created: yyyy-mm-dd, Updated: yyyy-mm-dd";
|
|
//
|
|
// tableLayoutPanel2
|
|
//
|
|
tableLayoutPanel2.ColumnCount = 2;
|
|
tableLayoutPanel2.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 175F));
|
|
tableLayoutPanel2.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanel2.Controls.Add(tableLayoutPanel4, 1, 2);
|
|
tableLayoutPanel2.Controls.Add(labelStatus, 0, 2);
|
|
tableLayoutPanel2.Controls.Add(richTextBoxDescription, 1, 1);
|
|
tableLayoutPanel2.Controls.Add(labelDescription, 0, 1);
|
|
tableLayoutPanel2.Controls.Add(textBoxTitle, 1, 0);
|
|
tableLayoutPanel2.Controls.Add(labelTitle, 0, 0);
|
|
tableLayoutPanel2.Controls.Add(labelHoursEst, 0, 3);
|
|
tableLayoutPanel2.Controls.Add(tableLayoutPanel6, 1, 3);
|
|
tableLayoutPanel2.Dock = DockStyle.Fill;
|
|
tableLayoutPanel2.Location = new Point(3, 3);
|
|
tableLayoutPanel2.Name = "tableLayoutPanel2";
|
|
tableLayoutPanel2.RowCount = 4;
|
|
tableLayoutPanel2.RowStyles.Add(new RowStyle(SizeType.Absolute, 50F));
|
|
tableLayoutPanel2.RowStyles.Add(new RowStyle(SizeType.Absolute, 100F));
|
|
tableLayoutPanel2.RowStyles.Add(new RowStyle(SizeType.Absolute, 50F));
|
|
tableLayoutPanel2.RowStyles.Add(new RowStyle(SizeType.Absolute, 50F));
|
|
tableLayoutPanel2.RowStyles.Add(new RowStyle(SizeType.Absolute, 20F));
|
|
tableLayoutPanel2.Size = new Size(1169, 253);
|
|
tableLayoutPanel2.TabIndex = 1;
|
|
//
|
|
// tableLayoutPanel4
|
|
//
|
|
tableLayoutPanel4.ColumnCount = 5;
|
|
tableLayoutPanel4.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 20F));
|
|
tableLayoutPanel4.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 20F));
|
|
tableLayoutPanel4.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 20F));
|
|
tableLayoutPanel4.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 20F));
|
|
tableLayoutPanel4.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 20F));
|
|
tableLayoutPanel4.Controls.Add(dateTimePickerDueDate, 4, 0);
|
|
tableLayoutPanel4.Controls.Add(comboBoxStatus, 0, 0);
|
|
tableLayoutPanel4.Controls.Add(labelPriority, 1, 0);
|
|
tableLayoutPanel4.Controls.Add(comboBoxPriority, 2, 0);
|
|
tableLayoutPanel4.Controls.Add(labelDueDate, 3, 0);
|
|
tableLayoutPanel4.Dock = DockStyle.Fill;
|
|
tableLayoutPanel4.Location = new Point(178, 153);
|
|
tableLayoutPanel4.Name = "tableLayoutPanel4";
|
|
tableLayoutPanel4.RowCount = 1;
|
|
tableLayoutPanel4.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanel4.Size = new Size(988, 44);
|
|
tableLayoutPanel4.TabIndex = 99;
|
|
//
|
|
// dateTimePickerDueDate
|
|
//
|
|
dateTimePickerDueDate.Format = DateTimePickerFormat.Short;
|
|
dateTimePickerDueDate.Location = new Point(791, 3);
|
|
dateTimePickerDueDate.Name = "dateTimePickerDueDate";
|
|
dateTimePickerDueDate.Size = new Size(194, 39);
|
|
dateTimePickerDueDate.TabIndex = 5;
|
|
//
|
|
// comboBoxStatus
|
|
//
|
|
comboBoxStatus.FlatStyle = FlatStyle.Flat;
|
|
comboBoxStatus.FormattingEnabled = true;
|
|
comboBoxStatus.Location = new Point(3, 3);
|
|
comboBoxStatus.Name = "comboBoxStatus";
|
|
comboBoxStatus.Size = new Size(190, 40);
|
|
comboBoxStatus.TabIndex = 3;
|
|
//
|
|
// labelPriority
|
|
//
|
|
labelPriority.AutoSize = true;
|
|
labelPriority.Dock = DockStyle.Fill;
|
|
labelPriority.Location = new Point(200, 0);
|
|
labelPriority.Name = "labelPriority";
|
|
labelPriority.Size = new Size(191, 44);
|
|
labelPriority.TabIndex = 0;
|
|
labelPriority.Text = "Priority";
|
|
labelPriority.TextAlign = ContentAlignment.TopCenter;
|
|
//
|
|
// comboBoxPriority
|
|
//
|
|
comboBoxPriority.FormattingEnabled = true;
|
|
comboBoxPriority.Location = new Point(397, 3);
|
|
comboBoxPriority.Name = "comboBoxPriority";
|
|
comboBoxPriority.Size = new Size(191, 40);
|
|
comboBoxPriority.TabIndex = 4;
|
|
//
|
|
// labelDueDate
|
|
//
|
|
labelDueDate.AutoSize = true;
|
|
labelDueDate.Dock = DockStyle.Fill;
|
|
labelDueDate.Location = new Point(594, 0);
|
|
labelDueDate.Name = "labelDueDate";
|
|
labelDueDate.Size = new Size(191, 44);
|
|
labelDueDate.TabIndex = 11;
|
|
labelDueDate.Text = "Due Date";
|
|
labelDueDate.TextAlign = ContentAlignment.TopCenter;
|
|
//
|
|
// labelStatus
|
|
//
|
|
labelStatus.AutoSize = true;
|
|
labelStatus.Dock = DockStyle.Fill;
|
|
labelStatus.Location = new Point(3, 150);
|
|
labelStatus.Name = "labelStatus";
|
|
labelStatus.Size = new Size(169, 50);
|
|
labelStatus.TabIndex = 14;
|
|
labelStatus.Text = "Status";
|
|
//
|
|
// richTextBoxDescription
|
|
//
|
|
richTextBoxDescription.Dock = DockStyle.Fill;
|
|
richTextBoxDescription.Location = new Point(178, 53);
|
|
richTextBoxDescription.Name = "richTextBoxDescription";
|
|
richTextBoxDescription.Size = new Size(988, 94);
|
|
richTextBoxDescription.TabIndex = 2;
|
|
richTextBoxDescription.Text = "";
|
|
//
|
|
// labelDescription
|
|
//
|
|
labelDescription.AutoSize = true;
|
|
labelDescription.Dock = DockStyle.Fill;
|
|
labelDescription.Location = new Point(3, 50);
|
|
labelDescription.Name = "labelDescription";
|
|
labelDescription.Size = new Size(169, 100);
|
|
labelDescription.TabIndex = 12;
|
|
labelDescription.Text = "Description";
|
|
//
|
|
// textBoxTitle
|
|
//
|
|
textBoxTitle.Dock = DockStyle.Fill;
|
|
textBoxTitle.Location = new Point(178, 3);
|
|
textBoxTitle.Margin = new Padding(3, 3, 52, 3);
|
|
textBoxTitle.Name = "textBoxTitle";
|
|
textBoxTitle.PlaceholderText = "Task name";
|
|
textBoxTitle.Size = new Size(939, 39);
|
|
textBoxTitle.TabIndex = 1;
|
|
textBoxTitle.Validating += textBoxTitle_Validating;
|
|
//
|
|
// labelTitle
|
|
//
|
|
labelTitle.AutoSize = true;
|
|
labelTitle.Dock = DockStyle.Fill;
|
|
labelTitle.Location = new Point(3, 0);
|
|
labelTitle.Name = "labelTitle";
|
|
labelTitle.Size = new Size(169, 50);
|
|
labelTitle.TabIndex = 10;
|
|
labelTitle.Text = "Name *";
|
|
//
|
|
// labelHoursEst
|
|
//
|
|
labelHoursEst.AutoSize = true;
|
|
labelHoursEst.Dock = DockStyle.Fill;
|
|
labelHoursEst.Location = new Point(3, 200);
|
|
labelHoursEst.Name = "labelHoursEst";
|
|
labelHoursEst.Size = new Size(169, 53);
|
|
labelHoursEst.TabIndex = 0;
|
|
labelHoursEst.Text = "Estimate Hrs";
|
|
//
|
|
// tableLayoutPanel6
|
|
//
|
|
tableLayoutPanel6.ColumnCount = 5;
|
|
tableLayoutPanel6.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 20F));
|
|
tableLayoutPanel6.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 20F));
|
|
tableLayoutPanel6.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 20F));
|
|
tableLayoutPanel6.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 20F));
|
|
tableLayoutPanel6.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 20F));
|
|
tableLayoutPanel6.Controls.Add(labelHoursActual, 1, 0);
|
|
tableLayoutPanel6.Controls.Add(textBoxHoursEst, 0, 0);
|
|
tableLayoutPanel6.Controls.Add(textBoxHoursActual, 2, 0);
|
|
tableLayoutPanel6.Controls.Add(labelRate, 3, 0);
|
|
tableLayoutPanel6.Controls.Add(textBoxRate, 4, 0);
|
|
tableLayoutPanel6.Dock = DockStyle.Fill;
|
|
tableLayoutPanel6.Location = new Point(178, 203);
|
|
tableLayoutPanel6.Name = "tableLayoutPanel6";
|
|
tableLayoutPanel6.RowCount = 1;
|
|
tableLayoutPanel6.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanel6.Size = new Size(988, 47);
|
|
tableLayoutPanel6.TabIndex = 99;
|
|
//
|
|
// labelHoursActual
|
|
//
|
|
labelHoursActual.AutoSize = true;
|
|
labelHoursActual.Dock = DockStyle.Fill;
|
|
labelHoursActual.Location = new Point(200, 0);
|
|
labelHoursActual.Name = "labelHoursActual";
|
|
labelHoursActual.Size = new Size(191, 47);
|
|
labelHoursActual.TabIndex = 2;
|
|
labelHoursActual.Text = "Actual Hrs";
|
|
labelHoursActual.TextAlign = ContentAlignment.TopCenter;
|
|
//
|
|
// textBoxHoursEst
|
|
//
|
|
textBoxHoursEst.Dock = DockStyle.Fill;
|
|
textBoxHoursEst.Location = new Point(3, 3);
|
|
textBoxHoursEst.Name = "textBoxHoursEst";
|
|
textBoxHoursEst.Size = new Size(191, 39);
|
|
textBoxHoursEst.TabIndex = 6;
|
|
//
|
|
// textBoxHoursActual
|
|
//
|
|
textBoxHoursActual.Dock = DockStyle.Fill;
|
|
textBoxHoursActual.Location = new Point(397, 3);
|
|
textBoxHoursActual.Name = "textBoxHoursActual";
|
|
textBoxHoursActual.Size = new Size(191, 39);
|
|
textBoxHoursActual.TabIndex = 6;
|
|
//
|
|
// labelRate
|
|
//
|
|
labelRate.AutoSize = true;
|
|
labelRate.Dock = DockStyle.Fill;
|
|
labelRate.Location = new Point(594, 0);
|
|
labelRate.Name = "labelRate";
|
|
labelRate.Size = new Size(191, 47);
|
|
labelRate.TabIndex = 5;
|
|
labelRate.Text = "Rate";
|
|
labelRate.TextAlign = ContentAlignment.TopCenter;
|
|
//
|
|
// textBoxRate
|
|
//
|
|
textBoxRate.Dock = DockStyle.Fill;
|
|
textBoxRate.Location = new Point(791, 3);
|
|
textBoxRate.Name = "textBoxRate";
|
|
textBoxRate.Size = new Size(194, 39);
|
|
textBoxRate.TabIndex = 8;
|
|
//
|
|
// TaskForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(13F, 32F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(1181, 372);
|
|
Controls.Add(groupBoxNewTask);
|
|
Name = "TaskForm";
|
|
Text = "TaskForm";
|
|
groupBoxNewTask.ResumeLayout(false);
|
|
tableLayoutPanel1.ResumeLayout(false);
|
|
tableLayoutPanel3.ResumeLayout(false);
|
|
tableLayoutPanel3.PerformLayout();
|
|
tableLayoutPanel2.ResumeLayout(false);
|
|
tableLayoutPanel2.PerformLayout();
|
|
tableLayoutPanel4.ResumeLayout(false);
|
|
tableLayoutPanel4.PerformLayout();
|
|
tableLayoutPanel6.ResumeLayout(false);
|
|
tableLayoutPanel6.PerformLayout();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private GroupBox groupBoxNewTask;
|
|
private TableLayoutPanel tableLayoutPanel1;
|
|
private TableLayoutPanel tableLayoutPanel2;
|
|
private Label labelClient;
|
|
private Label labelTitle;
|
|
private Label labelDescription;
|
|
private Label labelHoursEst;
|
|
private TextBox textBoxTitle;
|
|
private ComboBox comboBoxClient;
|
|
private TableLayoutPanel tableLayoutPanel6;
|
|
private Label labelHoursActual;
|
|
private RichTextBox richTextBoxDescription;
|
|
private TableLayoutPanel tableLayoutPanel4;
|
|
private ComboBox comboBoxStatus;
|
|
private Label labelPriority;
|
|
private Label labelStatus;
|
|
private DateTimePicker dateTimePickerDueDate;
|
|
private ComboBox comboBoxPriority;
|
|
private Label labelDueDate;
|
|
private TextBox textBoxHoursEst;
|
|
private TextBox textBoxHoursActual;
|
|
private TableLayoutPanel tableLayoutPanel3;
|
|
private Button buttonOkay;
|
|
private Button buttonCancel;
|
|
private Label labelCreatedUpdatedDT;
|
|
private Label labelRate;
|
|
private TextBox textBoxRate;
|
|
}
|
|
} |