Exemplo n.º 1
0
 private void btnUnderline_Click(object sender, EventArgs e)
 {
     try
     {
         if (this.TextEditor.SelectionCharStyle.Underline == true)
         {
             this.btnUnderline.Checked = false;
             ExtendedRichTextBox.CharStyle cs = this.TextEditor.SelectionCharStyle;
             cs.Underline = false;
             this.TextEditor.SelectionCharStyle = cs;
             cs = null;
         }
         else
         {
             this.btnUnderline.Checked = true;
             ExtendedRichTextBox.CharStyle cs = this.TextEditor.SelectionCharStyle;
             cs.Underline = true;
             this.TextEditor.SelectionCharStyle = cs;
             cs = null;
         }
     }
     catch (Exception)
     {
     }
 }
Exemplo n.º 2
0
 private void btnStrikeThrough_Click(object sender, EventArgs e)
 {
     try
     {
         if (this.TextEditor.SelectionCharStyle.Strikeout == true)
         {
             this.btnStrikeThrough.Checked = false;
             ExtendedRichTextBox.CharStyle cs = this.TextEditor.SelectionCharStyle;
             cs.Strikeout = false;
             this.TextEditor.SelectionCharStyle = cs;
             cs = null;
         }
         else
         {
             this.btnStrikeThrough.Checked = true;
             ExtendedRichTextBox.CharStyle cs = this.TextEditor.SelectionCharStyle;
             cs.Strikeout = true;
             this.TextEditor.SelectionCharStyle = cs;
             cs = null;
         }
     }
     catch (Exception)
     {
     }
 }
Exemplo n.º 3
0
 private void btnBold_Click(object sender, EventArgs e)
 {
     if (this.TextEditor.SelectionCharStyle.Bold == true)
     {
         this.btnBold.Checked = false;
         ExtendedRichTextBox.CharStyle cs = this.TextEditor.SelectionCharStyle;
         cs.Bold = false;
         this.TextEditor.SelectionCharStyle = cs;
         cs = null;
     }
     else
     {
         this.btnBold.Checked = true;
         ExtendedRichTextBox.CharStyle cs = this.TextEditor.SelectionCharStyle;
         cs.Bold = true;
         this.TextEditor.SelectionCharStyle = cs;
         cs = null;
     }
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     ExtendedRichTextBox.CharStyle                  charStyle1       = new ExtendedRichTextBox.CharStyle();
     ExtendedRichTextBox.ParaLineSpacing            paraLineSpacing1 = new ExtendedRichTextBox.ParaLineSpacing();
     ExtendedRichTextBox.ParaListStyle              paraListStyle1   = new ExtendedRichTextBox.ParaListStyle();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(FormEditor));
     this.panelLeftIndent     = new System.Windows.Forms.Panel();
     this.panelRightIndent    = new System.Windows.Forms.Panel();
     this.panelTextContainer  = new System.Windows.Forms.Panel();
     this.textBox             = new ExtendedRichTextBox();
     this.tmrCheckCompletion  = new System.Windows.Forms.Timer(this.components);
     this.tmrEnsureNoClose    = new System.Windows.Forms.Timer(this.components);
     this.tmrAutoSave         = new System.Windows.Forms.Timer(this.components);
     this.odysseyToolStrip1   = new Odyssey.UI.Controls.OdysseyToolStrip();
     this.odysseyStatusStrip1 = new Odyssey.UI.Controls.OdysseyStatusStrip();
     this.panelTextContainer.SuspendLayout();
     this.SuspendLayout();
     //
     // panelLeftIndent
     //
     this.panelLeftIndent.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panelLeftIndent.Location = new System.Drawing.Point(0, 25);
     this.panelLeftIndent.Name     = "panelLeftIndent";
     this.panelLeftIndent.Size     = new System.Drawing.Size(80, 514);
     this.panelLeftIndent.TabIndex = 4;
     //
     // panelRightIndent
     //
     this.panelRightIndent.Dock     = System.Windows.Forms.DockStyle.Right;
     this.panelRightIndent.Location = new System.Drawing.Point(704, 25);
     this.panelRightIndent.Name     = "panelRightIndent";
     this.panelRightIndent.Size     = new System.Drawing.Size(80, 514);
     this.panelRightIndent.TabIndex = 5;
     //
     // panelTextContainer
     //
     this.panelTextContainer.AutoSize  = true;
     this.panelTextContainer.BackColor = System.Drawing.Color.White;
     this.panelTextContainer.Controls.Add(this.textBox);
     this.panelTextContainer.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelTextContainer.Location = new System.Drawing.Point(80, 25);
     this.panelTextContainer.Name     = "panelTextContainer";
     this.panelTextContainer.Padding  = new System.Windows.Forms.Padding(0, 10, 0, 10);
     this.panelTextContainer.Size     = new System.Drawing.Size(624, 514);
     this.panelTextContainer.TabIndex = 8;
     //
     // textBox
     //
     this.textBox.AcceptsTab           = true;
     this.textBox.BorderStyle          = System.Windows.Forms.BorderStyle.None;
     this.textBox.Dock                 = System.Windows.Forms.DockStyle.Fill;
     this.textBox.Font                 = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox.Location             = new System.Drawing.Point(0, 10);
     this.textBox.Name                 = "textBox";
     charStyle1.Bold                   = false;
     charStyle1.Italic                 = false;
     charStyle1.Link                   = false;
     charStyle1.Strikeout              = false;
     charStyle1.Underline              = false;
     this.textBox.SelectionCharStyle   = charStyle1;
     this.textBox.SelectionFont2       = new System.Drawing.Font("Calibri", 5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Inch);
     paraLineSpacing1.ExactSpacing     = 0;
     paraLineSpacing1.SpacingStyle     = ExtendedRichTextBox.ParaLineSpacing.LineSpacingStyle.Unknown;
     this.textBox.SelectionLineSpacing = paraLineSpacing1;
     paraListStyle1.BulletCharCode     = ((short)(0));
     paraListStyle1.NumberingStart     = ((short)(0));
     paraListStyle1.Style              = ExtendedRichTextBox.ParaListStyle.ListStyle.NumberAndParenthesis;
     paraListStyle1.Type               = ExtendedRichTextBox.ParaListStyle.ListType.None;
     this.textBox.SelectionListType    = paraListStyle1;
     this.textBox.SelectionOffsetType  = ExtendedRichTextBox.OffsetType.None;
     this.textBox.SelectionSpaceAfter  = 0;
     this.textBox.SelectionSpaceBefore = 0;
     this.textBox.Size                 = new System.Drawing.Size(624, 494);
     this.textBox.TabIndex             = 8;
     this.textBox.Text                 = "";
     this.textBox.KeyDown             += new System.Windows.Forms.KeyEventHandler(this.textBox_KeyDown);
     this.textBox.KeyPress            += new System.Windows.Forms.KeyPressEventHandler(this.textBox_KeyPress);
     //
     // tmrCheckCompletion
     //
     this.tmrCheckCompletion.Interval = 2000;
     this.tmrCheckCompletion.Tick    += new System.EventHandler(this.tmrCheckCompletion_Tick);
     //
     // tmrEnsureNoClose
     //
     this.tmrEnsureNoClose.Interval = 500;
     this.tmrEnsureNoClose.Tick    += new System.EventHandler(this.tmrEnsureNoClose_Tick);
     //
     // tmrAutoSave
     //
     this.tmrAutoSave.Enabled  = true;
     this.tmrAutoSave.Interval = 300000;
     this.tmrAutoSave.Tick    += new System.EventHandler(this.tmrAutoSave_Tick);
     //
     // odysseyToolStrip1
     //
     this.odysseyToolStrip1.AutoSize = true;
     this.odysseyToolStrip1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.odysseyToolStrip1.Location = new System.Drawing.Point(0, 0);
     this.odysseyToolStrip1.Name     = "odysseyToolStrip1";
     this.odysseyToolStrip1.Size     = new System.Drawing.Size(784, 25);
     this.odysseyToolStrip1.TabIndex = 3;
     //
     // odysseyStatusStrip1
     //
     this.odysseyStatusStrip1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.odysseyStatusStrip1.Location = new System.Drawing.Point(0, 539);
     this.odysseyStatusStrip1.Name     = "odysseyStatusStrip1";
     this.odysseyStatusStrip1.Size     = new System.Drawing.Size(784, 22);
     this.odysseyStatusStrip1.TabIndex = 6;
     //
     // FormEditor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(784, 561);
     this.Controls.Add(this.panelTextContainer);
     this.Controls.Add(this.panelRightIndent);
     this.Controls.Add(this.panelLeftIndent);
     this.Controls.Add(this.odysseyToolStrip1);
     this.Controls.Add(this.odysseyStatusStrip1);
     this.Icon         = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name         = "FormEditor";
     this.Text         = "Odyssey";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormEditor_FormClosing);
     this.FormClosed  += new System.Windows.Forms.FormClosedEventHandler(this.FormEditor_FormClosed);
     this.Load        += new System.EventHandler(this.FormEditor_Load);
     this.Resize      += new System.EventHandler(this.FormEditor_Resize);
     this.panelTextContainer.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UC_Dictionary));
     ExtendedRichTextBox.CharStyle charStyle1 = new ExtendedRichTextBox.CharStyle();
     ExtendedRichTextBox.ParaLineSpacing paraLineSpacing1 = new ExtendedRichTextBox.ParaLineSpacing();
     ExtendedRichTextBox.ParaListStyle paraListStyle1 = new ExtendedRichTextBox.ParaListStyle();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.txtKeyword = new System.Windows.Forms.TextBox();
     this.cbxDictionary = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.lblKeyWord = new System.Windows.Forms.Label();
     this.lvwDE = new System.Windows.Forms.ListView();
     this.clmKeyword = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.cmsRightMouse = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mnuCopy = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuCut = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuPaste = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuConvert = new System.Windows.Forms.ToolStripMenuItem();
     this.btnNew = new System.Windows.Forms.Button();
     this.btnSave = new System.Windows.Forms.Button();
     this.btnDelete = new System.Windows.Forms.Button();
     this.btnEdit = new System.Windows.Forms.Button();
     this.pnlShow = new System.Windows.Forms.Panel();
     this.rtxShow = new ExtendedRichTextBox();
     this.tlsTool = new System.Windows.Forms.ToolStrip();
     this.btnBold = new System.Windows.Forms.ToolStripButton();
     this.btnItalic = new System.Windows.Forms.ToolStripButton();
     this.btnUnderline = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btnAlignLeft = new System.Windows.Forms.ToolStripButton();
     this.btnAlignCenter = new System.Windows.Forms.ToolStripButton();
     this.btnAlignRight = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.cboSize = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.btnUndo = new System.Windows.Forms.ToolStripButton();
     this.btnRedo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btnAddPicture = new System.Windows.Forms.ToolStripButton();
     this.btnColor = new System.Windows.Forms.ToolStripButton();
     this.btnHighLightColor = new System.Windows.Forms.ToolStripButton();
     this.groupBox1.SuspendLayout();
     this.cmsRightMouse.SuspendLayout();
     this.pnlShow.SuspendLayout();
     this.tlsTool.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.txtKeyword);
     this.groupBox1.Controls.Add(this.cbxDictionary);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.lblKeyWord);
     this.groupBox1.Controls.Add(this.lvwDE);
     this.groupBox1.Location = new System.Drawing.Point(3, -2);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(251, 475);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     //
     // txtKeyword
     //
     this.txtKeyword.Location = new System.Drawing.Point(76, 53);
     this.txtKeyword.Name = "txtKeyword";
     this.txtKeyword.Size = new System.Drawing.Size(155, 20);
     this.txtKeyword.TabIndex = 1;
     this.txtKeyword.TextChanged += new System.EventHandler(this.txtKeyWord_TextChanged);
     //
     // cbxDictionary
     //
     this.cbxDictionary.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxDictionary.FormattingEnabled = true;
     this.cbxDictionary.Items.AddRange(new object[] {
     "Afrikaans",
     "Albanian",
     "Arabic",
     "Armenian",
     "Azerbaijani",
     "Basque",
     "Belarusian",
     "Bengali",
     "Bosnian",
     "Bulgarian",
     "Catalan",
     "Cebuano",
     "Chinese",
     "Croatian",
     "Czech",
     "Danish",
     "Dutch",
     "English",
     "Esperanto",
     "Estonian",
     "Filipino",
     "Finnish",
     "French",
     "Galician",
     "Georgian",
     "German",
     "Greek",
     "Gujarati",
     "Haitian Creole",
     "Hausa",
     "Hebrew",
     "Hindi",
     "Hmong",
     "Hungarian",
     "Icelandic",
     "Igbo",
     "Indonesian",
     "Irish",
     "Italian",
     "Japanese",
     "Javanese",
     "Kannada",
     "Khmer",
     "Korean",
     "Lao",
     "Latin",
     "Latvian",
     "Lithuanian",
     "Macedonian",
     "Malay",
     "Maltese",
     "Maori",
     "Marathi",
     "Mongolian",
     "Nepali",
     "Norwegian",
     "Persian",
     "Polish",
     "Portuguese",
     "Punjabi",
     "Romanian",
     "Russian",
     "Serbian",
     "Slovak",
     "Slovenian",
     "Somali",
     "Spanish",
     "Swahili",
     "Swedish",
     "Tamil",
     "Telugu",
     "Thai",
     "Turkish",
     "Ukrainian",
     "Urdu",
     "Vietnamese",
     "Welsh",
     "Yiddish",
     "Yoruba",
     "Zulu"});
     this.cbxDictionary.Location = new System.Drawing.Point(76, 16);
     this.cbxDictionary.Name = "cbxDictionary";
     this.cbxDictionary.Size = new System.Drawing.Size(155, 21);
     this.cbxDictionary.TabIndex = 0;
     this.cbxDictionary.SelectedIndexChanged += new System.EventHandler(this.cbxDictionary_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(6, 85);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(107, 13);
     this.label1.TabIndex = 6;
     this.label1.Text = "Dictionary Entries";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.label2.Location = new System.Drawing.Point(6, 19);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(64, 13);
     this.label2.TabIndex = 0;
     this.label2.Text = "Dictionary";
     //
     // lblKeyWord
     //
     this.lblKeyWord.AutoSize = true;
     this.lblKeyWord.BackColor = System.Drawing.Color.Transparent;
     this.lblKeyWord.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblKeyWord.Location = new System.Drawing.Point(6, 53);
     this.lblKeyWord.Name = "lblKeyWord";
     this.lblKeyWord.Size = new System.Drawing.Size(55, 13);
     this.lblKeyWord.TabIndex = 4;
     this.lblKeyWord.Text = "Keyword";
     //
     // lvwDE
     //
     this.lvwDE.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.clmKeyword});
     this.lvwDE.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.lvwDE.FullRowSelect = true;
     this.lvwDE.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
     this.lvwDE.Location = new System.Drawing.Point(6, 101);
     this.lvwDE.MultiSelect = false;
     this.lvwDE.Name = "lvwDE";
     this.lvwDE.Size = new System.Drawing.Size(240, 374);
     this.lvwDE.TabIndex = 7;
     this.lvwDE.UseCompatibleStateImageBehavior = false;
     this.lvwDE.View = System.Windows.Forms.View.Details;
     this.lvwDE.SelectedIndexChanged += new System.EventHandler(this.lvwDE_SelectedIndexChanged);
     this.lvwDE.MouseClick += new System.Windows.Forms.MouseEventHandler(this.lvwDE_MouseClick);
     //
     // clmKeyword
     //
     this.clmKeyword.Text = "";
     this.clmKeyword.Width = 232;
     //
     // cmsRightMouse
     //
     this.cmsRightMouse.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuCopy,
     this.mnuCut,
     this.mnuPaste,
     this.mnuConvert});
     this.cmsRightMouse.Name = "cmsRightMouse";
     this.cmsRightMouse.Size = new System.Drawing.Size(178, 92);
     //
     // mnuCopy
     //
     this.mnuCopy.Image = ((System.Drawing.Image)(resources.GetObject("mnuCopy.Image")));
     this.mnuCopy.Name = "mnuCopy";
     this.mnuCopy.Size = new System.Drawing.Size(177, 22);
     this.mnuCopy.Text = "Copy";
     this.mnuCopy.Click += new System.EventHandler(this.mnuCopy_Click);
     //
     // mnuCut
     //
     this.mnuCut.Image = ((System.Drawing.Image)(resources.GetObject("mnuCut.Image")));
     this.mnuCut.Name = "mnuCut";
     this.mnuCut.Size = new System.Drawing.Size(177, 22);
     this.mnuCut.Text = "Cut";
     this.mnuCut.Click += new System.EventHandler(this.mnuCut_Click);
     //
     // mnuPaste
     //
     this.mnuPaste.Image = ((System.Drawing.Image)(resources.GetObject("mnuPaste.Image")));
     this.mnuPaste.Name = "mnuPaste";
     this.mnuPaste.Size = new System.Drawing.Size(177, 22);
     this.mnuPaste.Text = "Paste";
     this.mnuPaste.Click += new System.EventHandler(this.mnuPaste_Click);
     //
     // mnuConvert
     //
     this.mnuConvert.Name = "mnuConvert";
     this.mnuConvert.Size = new System.Drawing.Size(177, 22);
     this.mnuConvert.Text = "Convert to Rtf code";
     this.mnuConvert.Click += new System.EventHandler(this.mnuConvert_Click);
     //
     // btnNew
     //
     this.btnNew.BackColor = System.Drawing.SystemColors.Control;
     this.btnNew.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnNew.BackgroundImage")));
     this.btnNew.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnNew.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnNew.Image = ((System.Drawing.Image)(resources.GetObject("btnNew.Image")));
     this.btnNew.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnNew.Location = new System.Drawing.Point(260, 3);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(50, 50);
     this.btnNew.TabIndex = 3;
     this.btnNew.Text = "New";
     this.btnNew.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnNew.UseVisualStyleBackColor = false;
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // btnSave
     //
     this.btnSave.BackColor = System.Drawing.SystemColors.Control;
     this.btnSave.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSave.BackgroundImage")));
     this.btnSave.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnSave.Location = new System.Drawing.Point(260, 171);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(50, 50);
     this.btnSave.TabIndex = 6;
     this.btnSave.Text = "Save";
     this.btnSave.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnSave.UseVisualStyleBackColor = false;
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnDelete
     //
     this.btnDelete.BackColor = System.Drawing.SystemColors.Control;
     this.btnDelete.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnDelete.BackgroundImage")));
     this.btnDelete.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnDelete.Image = ((System.Drawing.Image)(resources.GetObject("btnDelete.Image")));
     this.btnDelete.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnDelete.Location = new System.Drawing.Point(260, 115);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(50, 50);
     this.btnDelete.TabIndex = 5;
     this.btnDelete.Text = "Delete";
     this.btnDelete.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnDelete.UseVisualStyleBackColor = false;
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnEdit
     //
     this.btnEdit.BackColor = System.Drawing.SystemColors.Control;
     this.btnEdit.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnEdit.BackgroundImage")));
     this.btnEdit.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnEdit.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnEdit.Image = ((System.Drawing.Image)(resources.GetObject("btnEdit.Image")));
     this.btnEdit.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnEdit.Location = new System.Drawing.Point(260, 59);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(50, 50);
     this.btnEdit.TabIndex = 4;
     this.btnEdit.Text = "Edit";
     this.btnEdit.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnEdit.UseVisualStyleBackColor = false;
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // pnlShow
     //
     this.pnlShow.Controls.Add(this.rtxShow);
     this.pnlShow.Controls.Add(this.tlsTool);
     this.pnlShow.Location = new System.Drawing.Point(316, 3);
     this.pnlShow.Name = "pnlShow";
     this.pnlShow.Size = new System.Drawing.Size(611, 470);
     this.pnlShow.TabIndex = 7;
     //
     // rtxShow
     //
     this.rtxShow.BackColor = System.Drawing.Color.Honeydew;
     this.rtxShow.ContextMenuStrip = this.cmsRightMouse;
     this.rtxShow.Dock = System.Windows.Forms.DockStyle.Fill;
     this.rtxShow.Location = new System.Drawing.Point(0, 25);
     this.rtxShow.Name = "rtxShow";
     charStyle1.Bold = false;
     charStyle1.Italic = false;
     charStyle1.Link = false;
     charStyle1.Strikeout = false;
     charStyle1.Underline = false;
     this.rtxShow.SelectionCharStyle = charStyle1;
     this.rtxShow.SelectionFont2 = new System.Drawing.Font("Microsoft Sans Serif", 2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Inch);
     paraLineSpacing1.ExactSpacing = 0;
     paraLineSpacing1.SpacingStyle = ExtendedRichTextBox.ParaLineSpacing.LineSpacingStyle.Unknown;
     this.rtxShow.SelectionLineSpacing = paraLineSpacing1;
     paraListStyle1.BulletCharCode = ((short)(0));
     paraListStyle1.NumberingStart = ((short)(0));
     paraListStyle1.Style = ExtendedRichTextBox.ParaListStyle.ListStyle.NumberAndParenthesis;
     paraListStyle1.Type = ExtendedRichTextBox.ParaListStyle.ListType.None;
     this.rtxShow.SelectionListType = paraListStyle1;
     this.rtxShow.SelectionOffsetType = ExtendedRichTextBox.OffsetType.None;
     this.rtxShow.SelectionSpaceAfter = 0;
     this.rtxShow.SelectionSpaceBefore = 0;
     this.rtxShow.Size = new System.Drawing.Size(611, 445);
     this.rtxShow.TabIndex = 2;
     this.rtxShow.Text = "";
     //
     // tlsTool
     //
     this.tlsTool.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.tlsTool.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btnBold,
     this.btnItalic,
     this.btnUnderline,
     this.toolStripSeparator1,
     this.btnAlignLeft,
     this.btnAlignCenter,
     this.btnAlignRight,
     this.toolStripSeparator2,
     this.cboSize,
     this.toolStripSeparator4,
     this.btnUndo,
     this.btnRedo,
     this.toolStripSeparator3,
     this.btnAddPicture,
     this.btnColor,
     this.btnHighLightColor});
     this.tlsTool.Location = new System.Drawing.Point(0, 0);
     this.tlsTool.Name = "tlsTool";
     this.tlsTool.Size = new System.Drawing.Size(611, 25);
     this.tlsTool.TabIndex = 4;
     this.tlsTool.Text = "toolStrip1";
     //
     // btnBold
     //
     this.btnBold.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnBold.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnBold.Image = ((System.Drawing.Image)(resources.GetObject("btnBold.Image")));
     this.btnBold.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnBold.Name = "btnBold";
     this.btnBold.Size = new System.Drawing.Size(23, 22);
     this.btnBold.Text = "B";
     this.btnBold.Click += new System.EventHandler(this.btnBold_Click);
     //
     // btnItalic
     //
     this.btnItalic.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnItalic.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnItalic.Image = ((System.Drawing.Image)(resources.GetObject("btnItalic.Image")));
     this.btnItalic.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnItalic.Name = "btnItalic";
     this.btnItalic.Size = new System.Drawing.Size(23, 22);
     this.btnItalic.Text = "I";
     this.btnItalic.Click += new System.EventHandler(this.btnItalic_Click);
     //
     // btnUnderline
     //
     this.btnUnderline.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnUnderline.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnUnderline.Image = ((System.Drawing.Image)(resources.GetObject("btnUnderline.Image")));
     this.btnUnderline.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnUnderline.Name = "btnUnderline";
     this.btnUnderline.Size = new System.Drawing.Size(23, 22);
     this.btnUnderline.Text = "U";
     this.btnUnderline.Click += new System.EventHandler(this.btnUnderline_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // btnAlignLeft
     //
     this.btnAlignLeft.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnAlignLeft.Image = ((System.Drawing.Image)(resources.GetObject("btnAlignLeft.Image")));
     this.btnAlignLeft.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAlignLeft.Name = "btnAlignLeft";
     this.btnAlignLeft.Size = new System.Drawing.Size(23, 22);
     this.btnAlignLeft.Text = "toolStripButton1";
     this.btnAlignLeft.Click += new System.EventHandler(this.btnLeftAlign_Click);
     //
     // btnAlignCenter
     //
     this.btnAlignCenter.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnAlignCenter.Image = ((System.Drawing.Image)(resources.GetObject("btnAlignCenter.Image")));
     this.btnAlignCenter.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAlignCenter.Name = "btnAlignCenter";
     this.btnAlignCenter.Size = new System.Drawing.Size(23, 22);
     this.btnAlignCenter.Text = "toolStripButton1";
     this.btnAlignCenter.Click += new System.EventHandler(this.btnCenterAlign_Click);
     //
     // btnAlignRight
     //
     this.btnAlignRight.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnAlignRight.Image = ((System.Drawing.Image)(resources.GetObject("btnAlignRight.Image")));
     this.btnAlignRight.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAlignRight.Name = "btnAlignRight";
     this.btnAlignRight.Size = new System.Drawing.Size(23, 22);
     this.btnAlignRight.Text = "toolStripButton1";
     this.btnAlignRight.Click += new System.EventHandler(this.btnRightAlign_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // cboSize
     //
     this.cboSize.AutoSize = false;
     this.cboSize.Items.AddRange(new object[] {
     "8",
     "9",
     "10",
     "11",
     "12",
     "14",
     "16",
     "18",
     "20",
     "22",
     "24",
     "26",
     "28",
     "36",
     "48",
     "72"});
     this.cboSize.Name = "cboSize";
     this.cboSize.Size = new System.Drawing.Size(35, 23);
     this.cboSize.Text = "8";
     this.cboSize.SelectedIndexChanged += new System.EventHandler(this.cboSize_SelectedIndexChanged);
     this.cboSize.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cboSize_KeyDown);
     this.cboSize.KeyUp += new System.Windows.Forms.KeyEventHandler(this.cboSize_KeyUp);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
     //
     // btnUndo
     //
     this.btnUndo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnUndo.Image = ((System.Drawing.Image)(resources.GetObject("btnUndo.Image")));
     this.btnUndo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnUndo.Name = "btnUndo";
     this.btnUndo.Size = new System.Drawing.Size(23, 22);
     this.btnUndo.Text = "toolStripButton1";
     this.btnUndo.Click += new System.EventHandler(this.btnUndo_Click);
     //
     // btnRedo
     //
     this.btnRedo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnRedo.Image = ((System.Drawing.Image)(resources.GetObject("btnRedo.Image")));
     this.btnRedo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnRedo.Name = "btnRedo";
     this.btnRedo.Size = new System.Drawing.Size(23, 22);
     this.btnRedo.Text = "toolStripButton1";
     this.btnRedo.Click += new System.EventHandler(this.btnRedo_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // btnAddPicture
     //
     this.btnAddPicture.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnAddPicture.Image = ((System.Drawing.Image)(resources.GetObject("btnAddPicture.Image")));
     this.btnAddPicture.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAddPicture.Name = "btnAddPicture";
     this.btnAddPicture.Size = new System.Drawing.Size(23, 22);
     this.btnAddPicture.Text = "toolStripButton1";
     this.btnAddPicture.Click += new System.EventHandler(this.btnAddPicture_Click);
     //
     // btnColor
     //
     this.btnColor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnColor.Image = ((System.Drawing.Image)(resources.GetObject("btnColor.Image")));
     this.btnColor.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnColor.Name = "btnColor";
     this.btnColor.Size = new System.Drawing.Size(23, 22);
     this.btnColor.Text = "toolStripButton1";
     this.btnColor.Click += new System.EventHandler(this.btnColor_Click);
     //
     // btnHighLightColor
     //
     this.btnHighLightColor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnHighLightColor.Image = global::Reminiscent.Properties.Resources.mnuHighlightColor;
     this.btnHighLightColor.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnHighLightColor.Name = "btnHighLightColor";
     this.btnHighLightColor.Size = new System.Drawing.Size(23, 22);
     this.btnHighLightColor.Text = "toolStripButton1";
     this.btnHighLightColor.Click += new System.EventHandler(this.btnHighLightColor_Click);
     //
     // UC_Dictionary
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.Transparent;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.Controls.Add(this.pnlShow);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnDelete);
     this.Controls.Add(this.btnEdit);
     this.Controls.Add(this.btnNew);
     this.Controls.Add(this.groupBox1);
     this.Name = "UC_Dictionary";
     this.Size = new System.Drawing.Size(930, 473);
     this.Load += new System.EventHandler(this.UC_Dictionary_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.cmsRightMouse.ResumeLayout(false);
     this.pnlShow.ResumeLayout(false);
     this.pnlShow.PerformLayout();
     this.tlsTool.ResumeLayout(false);
     this.tlsTool.PerformLayout();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NewSchedule));
            ExtendedRichTextBox.CharStyle charStyle1 = new ExtendedRichTextBox.CharStyle();
            ExtendedRichTextBox.ParaLineSpacing paraLineSpacing1 = new ExtendedRichTextBox.ParaLineSpacing();
            ExtendedRichTextBox.ParaListStyle paraListStyle1 = new ExtendedRichTextBox.ParaListStyle();
            ExtendedRichTextBox.CharStyle charStyle2 = new ExtendedRichTextBox.CharStyle();
            ExtendedRichTextBox.ParaLineSpacing paraLineSpacing2 = new ExtendedRichTextBox.ParaLineSpacing();
            ExtendedRichTextBox.ParaListStyle paraListStyle2 = new ExtendedRichTextBox.ParaListStyle();
            this.txtProject = new System.Windows.Forms.TextBox();
            this.lblProjectName = new System.Windows.Forms.Label();
            this.lblAbstract = new System.Windows.Forms.Label();
            this.PanelChart = new System.Windows.Forms.Panel();
            this.btnCancel = new System.Windows.Forms.Button();
            this.btnOK = new System.Windows.Forms.Button();
            this.dtStart = new System.Windows.Forms.DateTimePicker();
            this.lblStart = new System.Windows.Forms.Label();
            this.dtEnd = new System.Windows.Forms.DateTimePicker();
            this.lblEnd = new System.Windows.Forms.Label();
            this.tlsTool = new System.Windows.Forms.ToolStrip();
            this.btnBold = new System.Windows.Forms.ToolStripButton();
            this.btnItalic = new System.Windows.Forms.ToolStripButton();
            this.btnUnderline = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.btnAlignLeft = new System.Windows.Forms.ToolStripButton();
            this.btnAlignCenter = new System.Windows.Forms.ToolStripButton();
            this.btnAlignRight = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.cboFontSize = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.btnUndo = new System.Windows.Forms.ToolStripButton();
            this.btnRedo = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.btnAddPicture = new System.Windows.Forms.ToolStripButton();
            this.btnColor = new System.Windows.Forms.ToolStripButton();
            this.btnHighLightColor = new System.Windows.Forms.ToolStripButton();
            this.lstTasks = new System.Windows.Forms.ListView();
            this.colTask = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.colName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.colPercent = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.colAccomplished = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.colHour = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.btnRefresh = new System.Windows.Forms.Button();
            this.btnDelete = new System.Windows.Forms.Button();
            this.btnSaveAs = new System.Windows.Forms.Button();
            this.tlsTask = new System.Windows.Forms.ToolStrip();
            this.btnB2 = new System.Windows.Forms.ToolStripButton();
            this.btnI2 = new System.Windows.Forms.ToolStripButton();
            this.btnU2 = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
            this.btnLeft2 = new System.Windows.Forms.ToolStripButton();
            this.btnCenter2 = new System.Windows.Forms.ToolStripButton();
            this.btnRight2 = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
            this.cboFontSize2 = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
            this.btnUndo2 = new System.Windows.Forms.ToolStripButton();
            this.btnRedo2 = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
            this.btnAddPicture2 = new System.Windows.Forms.ToolStripButton();
            this.btnColor2 = new System.Windows.Forms.ToolStripButton();
            this.btnHighLight2 = new System.Windows.Forms.ToolStripButton();
            this.lblDes = new System.Windows.Forms.Label();
            this.txtTaskName = new System.Windows.Forms.TextBox();
            this.lblTaskName = new System.Windows.Forms.Label();
            this.nPA = new System.Windows.Forms.NumericUpDown();
            this.nPPP = new System.Windows.Forms.NumericUpDown();
            this.lblPA = new System.Windows.Forms.Label();
            this.lblPPP = new System.Windows.Forms.Label();
            this.lblPTime = new System.Windows.Forms.Label();
            this.btnSave = new System.Windows.Forms.Button();
            this.lblHour = new System.Windows.Forms.Label();
            this.nPH = new System.Windows.Forms.NumericUpDown();
            this.lblTInfo = new System.Windows.Forms.Label();
            this.btnBigSize = new System.Windows.Forms.Button();
            this.panel1 = new System.Windows.Forms.Panel();
            this.txtAbstract = new ExtendedRichTextBox();
            this.panel2 = new System.Windows.Forms.Panel();
            this.txtTaskDes = new ExtendedRichTextBox();
            this.tlsTool.SuspendLayout();
            this.tlsTask.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.nPA)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nPPP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nPH)).BeginInit();
            this.panel1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.SuspendLayout();
            // 
            // txtProject
            // 
            this.txtProject.BackColor = System.Drawing.Color.White;
            this.txtProject.Location = new System.Drawing.Point(12, 28);
            this.txtProject.Name = "txtProject";
            this.txtProject.Size = new System.Drawing.Size(770, 20);
            this.txtProject.TabIndex = 0;
            // 
            // lblProjectName
            // 
            this.lblProjectName.AutoSize = true;
            this.lblProjectName.BackColor = System.Drawing.Color.Transparent;
            this.lblProjectName.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblProjectName.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblProjectName.Location = new System.Drawing.Point(13, 8);
            this.lblProjectName.Name = "lblProjectName";
            this.lblProjectName.Size = new System.Drawing.Size(83, 13);
            this.lblProjectName.TabIndex = 11;
            this.lblProjectName.Text = "Project Name";
            this.lblProjectName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblAbstract
            // 
            this.lblAbstract.AutoSize = true;
            this.lblAbstract.BackColor = System.Drawing.Color.Transparent;
            this.lblAbstract.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblAbstract.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblAbstract.Location = new System.Drawing.Point(401, 53);
            this.lblAbstract.Name = "lblAbstract";
            this.lblAbstract.Size = new System.Drawing.Size(98, 13);
            this.lblAbstract.TabIndex = 13;
            this.lblAbstract.Text = "Project Abstract";
            // 
            // PanelChart
            // 
            this.PanelChart.BackColor = System.Drawing.Color.White;
            this.PanelChart.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.PanelChart.Location = new System.Drawing.Point(12, 95);
            this.PanelChart.Name = "PanelChart";
            this.PanelChart.Size = new System.Drawing.Size(378, 128);
            this.PanelChart.TabIndex = 3;
            this.PanelChart.Paint += new System.Windows.Forms.PaintEventHandler(this.PanelChart_Paint);
            // 
            // btnCancel
            // 
            this.btnCancel.BackColor = System.Drawing.SystemColors.Control;
            this.btnCancel.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnCancel.BackgroundImage")));
            this.btnCancel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.btnCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnCancel.Image")));
            this.btnCancel.Location = new System.Drawing.Point(500, 525);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(79, 37);
            this.btnCancel.TabIndex = 16;
            this.btnCancel.UseVisualStyleBackColor = false;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            this.btnCancel.MouseLeave += new System.EventHandler(this.btnCancel_MouseLeave);
            this.btnCancel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnCancel_MouseMove);
            // 
            // btnOK
            // 
            this.btnOK.BackColor = System.Drawing.SystemColors.Control;
            this.btnOK.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnOK.BackgroundImage")));
            this.btnOK.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.btnOK.Image = ((System.Drawing.Image)(resources.GetObject("btnOK.Image")));
            this.btnOK.Location = new System.Drawing.Point(216, 525);
            this.btnOK.Name = "btnOK";
            this.btnOK.Size = new System.Drawing.Size(79, 37);
            this.btnOK.TabIndex = 15;
            this.btnOK.UseVisualStyleBackColor = false;
            this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
            this.btnOK.MouseLeave += new System.EventHandler(this.btnOK_MouseLeave);
            this.btnOK.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnOK_MouseMove);
            // 
            // dtStart
            // 
            this.dtStart.CustomFormat = "dd/MM/yyyy";
            this.dtStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtStart.Location = new System.Drawing.Point(83, 69);
            this.dtStart.Name = "dtStart";
            this.dtStart.Size = new System.Drawing.Size(95, 20);
            this.dtStart.TabIndex = 1;
            this.dtStart.ValueChanged += new System.EventHandler(this.dateTimePicker1_ValueChanged);
            // 
            // lblStart
            // 
            this.lblStart.AutoSize = true;
            this.lblStart.BackColor = System.Drawing.Color.Transparent;
            this.lblStart.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblStart.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblStart.Location = new System.Drawing.Point(12, 72);
            this.lblStart.Name = "lblStart";
            this.lblStart.Size = new System.Drawing.Size(65, 13);
            this.lblStart.TabIndex = 19;
            this.lblStart.Text = "Start Date";
            // 
            // dtEnd
            // 
            this.dtEnd.CustomFormat = "dd/MM/yyyy";
            this.dtEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtEnd.Location = new System.Drawing.Point(295, 69);
            this.dtEnd.Name = "dtEnd";
            this.dtEnd.Size = new System.Drawing.Size(95, 20);
            this.dtEnd.TabIndex = 2;
            this.dtEnd.ValueChanged += new System.EventHandler(this.dtEnd_ValueChanged);
            // 
            // lblEnd
            // 
            this.lblEnd.AutoSize = true;
            this.lblEnd.BackColor = System.Drawing.Color.Transparent;
            this.lblEnd.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblEnd.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblEnd.Location = new System.Drawing.Point(224, 72);
            this.lblEnd.Name = "lblEnd";
            this.lblEnd.Size = new System.Drawing.Size(60, 13);
            this.lblEnd.TabIndex = 21;
            this.lblEnd.Text = "End Date";
            // 
            // tlsTool
            // 
            this.tlsTool.AutoSize = false;
            this.tlsTool.Dock = System.Windows.Forms.DockStyle.None;
            this.tlsTool.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.tlsTool.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.btnBold,
            this.btnItalic,
            this.btnUnderline,
            this.toolStripSeparator1,
            this.btnAlignLeft,
            this.btnAlignCenter,
            this.btnAlignRight,
            this.toolStripSeparator2,
            this.cboFontSize,
            this.toolStripSeparator4,
            this.btnUndo,
            this.btnRedo,
            this.toolStripSeparator3,
            this.btnAddPicture,
            this.btnColor,
            this.btnHighLightColor});
            this.tlsTool.Location = new System.Drawing.Point(404, 67);
            this.tlsTool.Name = "tlsTool";
            this.tlsTool.Size = new System.Drawing.Size(378, 25);
            this.tlsTool.TabIndex = 24;
            this.tlsTool.Text = "toolStrip1";
            // 
            // btnBold
            // 
            this.btnBold.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnBold.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.btnBold.Image = ((System.Drawing.Image)(resources.GetObject("btnBold.Image")));
            this.btnBold.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnBold.Name = "btnBold";
            this.btnBold.Size = new System.Drawing.Size(23, 22);
            this.btnBold.Text = "B";
            this.btnBold.Click += new System.EventHandler(this.btnBold_Click);
            // 
            // btnItalic
            // 
            this.btnItalic.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnItalic.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.btnItalic.Image = ((System.Drawing.Image)(resources.GetObject("btnItalic.Image")));
            this.btnItalic.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnItalic.Name = "btnItalic";
            this.btnItalic.Size = new System.Drawing.Size(23, 22);
            this.btnItalic.Text = "I";
            this.btnItalic.Click += new System.EventHandler(this.btnItalic_Click);
            // 
            // btnUnderline
            // 
            this.btnUnderline.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnUnderline.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.btnUnderline.Image = ((System.Drawing.Image)(resources.GetObject("btnUnderline.Image")));
            this.btnUnderline.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnUnderline.Name = "btnUnderline";
            this.btnUnderline.Size = new System.Drawing.Size(23, 22);
            this.btnUnderline.Text = "U";
            this.btnUnderline.Click += new System.EventHandler(this.btnUnderline_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
            // 
            // btnAlignLeft
            // 
            this.btnAlignLeft.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnAlignLeft.Image = ((System.Drawing.Image)(resources.GetObject("btnAlignLeft.Image")));
            this.btnAlignLeft.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnAlignLeft.Name = "btnAlignLeft";
            this.btnAlignLeft.Size = new System.Drawing.Size(23, 22);
            this.btnAlignLeft.Text = "Align Left";
            this.btnAlignLeft.Click += new System.EventHandler(this.btnLeftAlign_Click);
            // 
            // btnAlignCenter
            // 
            this.btnAlignCenter.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnAlignCenter.Image = ((System.Drawing.Image)(resources.GetObject("btnAlignCenter.Image")));
            this.btnAlignCenter.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnAlignCenter.Name = "btnAlignCenter";
            this.btnAlignCenter.Size = new System.Drawing.Size(23, 22);
            this.btnAlignCenter.Text = "Align Center";
            this.btnAlignCenter.Click += new System.EventHandler(this.btnCenterAlign_Click);
            // 
            // btnAlignRight
            // 
            this.btnAlignRight.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnAlignRight.Image = ((System.Drawing.Image)(resources.GetObject("btnAlignRight.Image")));
            this.btnAlignRight.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnAlignRight.Name = "btnAlignRight";
            this.btnAlignRight.Size = new System.Drawing.Size(23, 22);
            this.btnAlignRight.Text = "Align Right";
            this.btnAlignRight.Click += new System.EventHandler(this.btnRightAlign_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
            // 
            // cboFontSize
            // 
            this.cboFontSize.AutoSize = false;
            this.cboFontSize.Items.AddRange(new object[] {
            "8",
            "9",
            "10",
            "11",
            "12",
            "14",
            "16",
            "18",
            "20",
            "22",
            "24",
            "26",
            "28",
            "36",
            "48",
            "72"});
            this.cboFontSize.Name = "cboFontSize";
            this.cboFontSize.Size = new System.Drawing.Size(35, 23);
            this.cboFontSize.Text = "8";
            this.cboFontSize.SelectedIndexChanged += new System.EventHandler(this.cboFontSize_SelectedIndexChanged);
            this.cboFontSize.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cboFontSize_KeyDown);
            this.cboFontSize.KeyUp += new System.Windows.Forms.KeyEventHandler(this.cboFontSize_KeyUp);
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
            // 
            // btnUndo
            // 
            this.btnUndo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnUndo.Image = ((System.Drawing.Image)(resources.GetObject("btnUndo.Image")));
            this.btnUndo.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnUndo.Name = "btnUndo";
            this.btnUndo.Size = new System.Drawing.Size(23, 22);
            this.btnUndo.Text = "Undo";
            this.btnUndo.Click += new System.EventHandler(this.btnUndo_Click);
            // 
            // btnRedo
            // 
            this.btnRedo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnRedo.Image = ((System.Drawing.Image)(resources.GetObject("btnRedo.Image")));
            this.btnRedo.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnRedo.Name = "btnRedo";
            this.btnRedo.Size = new System.Drawing.Size(23, 22);
            this.btnRedo.Text = "Redo";
            this.btnRedo.Click += new System.EventHandler(this.btnRedo_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
            // 
            // btnAddPicture
            // 
            this.btnAddPicture.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnAddPicture.Image = ((System.Drawing.Image)(resources.GetObject("btnAddPicture.Image")));
            this.btnAddPicture.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnAddPicture.Name = "btnAddPicture";
            this.btnAddPicture.Size = new System.Drawing.Size(23, 22);
            this.btnAddPicture.Text = "Add Picture";
            this.btnAddPicture.Click += new System.EventHandler(this.btnAddPicture_Click);
            // 
            // btnColor
            // 
            this.btnColor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnColor.Image = ((System.Drawing.Image)(resources.GetObject("btnColor.Image")));
            this.btnColor.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnColor.Name = "btnColor";
            this.btnColor.Size = new System.Drawing.Size(23, 22);
            this.btnColor.Text = "Text Color";
            this.btnColor.Click += new System.EventHandler(this.btnColor_Click);
            // 
            // btnHighLightColor
            // 
            this.btnHighLightColor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnHighLightColor.Image = ((System.Drawing.Image)(resources.GetObject("btnHighLightColor.Image")));
            this.btnHighLightColor.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnHighLightColor.Name = "btnHighLightColor";
            this.btnHighLightColor.Size = new System.Drawing.Size(23, 22);
            this.btnHighLightColor.Text = "HighLight Color";
            this.btnHighLightColor.Click += new System.EventHandler(this.btnHighLightColor_Click);
            // 
            // lstTasks
            // 
            this.lstTasks.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.colTask,
            this.colName,
            this.colPercent,
            this.colAccomplished,
            this.colHour});
            this.lstTasks.FullRowSelect = true;
            this.lstTasks.GridLines = true;
            this.lstTasks.Location = new System.Drawing.Point(12, 341);
            this.lstTasks.MultiSelect = false;
            this.lstTasks.Name = "lstTasks";
            this.lstTasks.Size = new System.Drawing.Size(378, 128);
            this.lstTasks.TabIndex = 9;
            this.lstTasks.UseCompatibleStateImageBehavior = false;
            this.lstTasks.View = System.Windows.Forms.View.Details;
            this.lstTasks.SelectedIndexChanged += new System.EventHandler(this.lstTasks_SelectedIndexChanged);
            // 
            // colTask
            // 
            this.colTask.Text = "Task";
            // 
            // colName
            // 
            this.colName.Text = "Name";
            this.colName.Width = 94;
            // 
            // colPercent
            // 
            this.colPercent.Text = "Percent/Project";
            this.colPercent.Width = 100;
            // 
            // colAccomplished
            // 
            this.colAccomplished.Text = "Accomplished";
            this.colAccomplished.Width = 80;
            // 
            // colHour
            // 
            this.colHour.Text = "Hour";
            this.colHour.Width = 40;
            // 
            // btnRefresh
            // 
            this.btnRefresh.BackColor = System.Drawing.Color.Transparent;
            this.btnRefresh.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnRefresh.FlatAppearance.BorderSize = 0;
            this.btnRefresh.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.GradientActiveCaption;
            this.btnRefresh.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Gold;
            this.btnRefresh.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnRefresh.Image = ((System.Drawing.Image)(resources.GetObject("btnRefresh.Image")));
            this.btnRefresh.Location = new System.Drawing.Point(438, 475);
            this.btnRefresh.Name = "btnRefresh";
            this.btnRefresh.Size = new System.Drawing.Size(27, 27);
            this.btnRefresh.TabIndex = 13;
            this.btnRefresh.UseVisualStyleBackColor = false;
            this.btnRefresh.Click += new System.EventHandler(this.btnNew_Click);
            // 
            // btnDelete
            // 
            this.btnDelete.BackColor = System.Drawing.Color.Transparent;
            this.btnDelete.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnDelete.FlatAppearance.BorderSize = 0;
            this.btnDelete.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.GradientActiveCaption;
            this.btnDelete.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Gold;
            this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnDelete.Image = ((System.Drawing.Image)(resources.GetObject("btnDelete.Image")));
            this.btnDelete.Location = new System.Drawing.Point(523, 475);
            this.btnDelete.Name = "btnDelete";
            this.btnDelete.Size = new System.Drawing.Size(27, 27);
            this.btnDelete.TabIndex = 14;
            this.btnDelete.UseVisualStyleBackColor = false;
            this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
            // 
            // btnSaveAs
            // 
            this.btnSaveAs.BackColor = System.Drawing.Color.Transparent;
            this.btnSaveAs.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnSaveAs.FlatAppearance.BorderSize = 0;
            this.btnSaveAs.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.GradientActiveCaption;
            this.btnSaveAs.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Gold;
            this.btnSaveAs.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnSaveAs.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveAs.Image")));
            this.btnSaveAs.Location = new System.Drawing.Point(353, 475);
            this.btnSaveAs.Name = "btnSaveAs";
            this.btnSaveAs.Size = new System.Drawing.Size(27, 27);
            this.btnSaveAs.TabIndex = 12;
            this.btnSaveAs.UseVisualStyleBackColor = false;
            this.btnSaveAs.Click += new System.EventHandler(this.btnEdit_Click);
            // 
            // tlsTask
            // 
            this.tlsTask.AutoSize = false;
            this.tlsTask.Dock = System.Windows.Forms.DockStyle.None;
            this.tlsTask.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.tlsTask.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.btnB2,
            this.btnI2,
            this.btnU2,
            this.toolStripSeparator5,
            this.btnLeft2,
            this.btnCenter2,
            this.btnRight2,
            this.toolStripSeparator6,
            this.cboFontSize2,
            this.toolStripSeparator7,
            this.btnUndo2,
            this.btnRedo2,
            this.toolStripSeparator8,
            this.btnAddPicture2,
            this.btnColor2,
            this.btnHighLight2});
            this.tlsTask.Location = new System.Drawing.Point(404, 313);
            this.tlsTask.Name = "tlsTask";
            this.tlsTask.Size = new System.Drawing.Size(378, 25);
            this.tlsTask.TabIndex = 87;
            this.tlsTask.Text = "toolStrip1";
            // 
            // btnB2
            // 
            this.btnB2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnB2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.btnB2.Image = ((System.Drawing.Image)(resources.GetObject("btnB2.Image")));
            this.btnB2.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnB2.Name = "btnB2";
            this.btnB2.Size = new System.Drawing.Size(23, 22);
            this.btnB2.Text = "B";
            this.btnB2.Click += new System.EventHandler(this.btnB2_Click);
            // 
            // btnI2
            // 
            this.btnI2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnI2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.btnI2.Image = ((System.Drawing.Image)(resources.GetObject("btnI2.Image")));
            this.btnI2.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnI2.Name = "btnI2";
            this.btnI2.Size = new System.Drawing.Size(23, 22);
            this.btnI2.Text = "I";
            this.btnI2.Click += new System.EventHandler(this.btnI2_Click);
            // 
            // btnU2
            // 
            this.btnU2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnU2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.btnU2.Image = ((System.Drawing.Image)(resources.GetObject("btnU2.Image")));
            this.btnU2.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnU2.Name = "btnU2";
            this.btnU2.Size = new System.Drawing.Size(23, 22);
            this.btnU2.Text = "U";
            this.btnU2.Click += new System.EventHandler(this.btnU2_Click);
            // 
            // toolStripSeparator5
            // 
            this.toolStripSeparator5.Name = "toolStripSeparator5";
            this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
            // 
            // btnLeft2
            // 
            this.btnLeft2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnLeft2.Image = ((System.Drawing.Image)(resources.GetObject("btnLeft2.Image")));
            this.btnLeft2.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnLeft2.Name = "btnLeft2";
            this.btnLeft2.Size = new System.Drawing.Size(23, 22);
            this.btnLeft2.Text = "Align Left";
            this.btnLeft2.Click += new System.EventHandler(this.btnLeft2_Click);
            // 
            // btnCenter2
            // 
            this.btnCenter2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnCenter2.Image = ((System.Drawing.Image)(resources.GetObject("btnCenter2.Image")));
            this.btnCenter2.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnCenter2.Name = "btnCenter2";
            this.btnCenter2.Size = new System.Drawing.Size(23, 22);
            this.btnCenter2.Text = "Align Center";
            this.btnCenter2.Click += new System.EventHandler(this.btnCenter2_Click);
            // 
            // btnRight2
            // 
            this.btnRight2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnRight2.Image = ((System.Drawing.Image)(resources.GetObject("btnRight2.Image")));
            this.btnRight2.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnRight2.Name = "btnRight2";
            this.btnRight2.Size = new System.Drawing.Size(23, 22);
            this.btnRight2.Text = "Align Right";
            this.btnRight2.Click += new System.EventHandler(this.btnRight2_Click);
            // 
            // toolStripSeparator6
            // 
            this.toolStripSeparator6.Name = "toolStripSeparator6";
            this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
            // 
            // cboFontSize2
            // 
            this.cboFontSize2.AutoSize = false;
            this.cboFontSize2.Items.AddRange(new object[] {
            "8",
            "9",
            "10",
            "11",
            "12",
            "14",
            "16",
            "18",
            "20",
            "22",
            "24",
            "26",
            "28",
            "36",
            "48",
            "72"});
            this.cboFontSize2.Name = "cboFontSize2";
            this.cboFontSize2.Size = new System.Drawing.Size(35, 23);
            this.cboFontSize2.Text = "8";
            this.cboFontSize2.SelectedIndexChanged += new System.EventHandler(this.cboFontSize2_SelectedIndexChanged);
            this.cboFontSize2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cboFontSize2_KeyDown);
            this.cboFontSize2.KeyUp += new System.Windows.Forms.KeyEventHandler(this.cboFontSize2_KeyUp);
            // 
            // toolStripSeparator7
            // 
            this.toolStripSeparator7.Name = "toolStripSeparator7";
            this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
            // 
            // btnUndo2
            // 
            this.btnUndo2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnUndo2.Image = ((System.Drawing.Image)(resources.GetObject("btnUndo2.Image")));
            this.btnUndo2.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnUndo2.Name = "btnUndo2";
            this.btnUndo2.Size = new System.Drawing.Size(23, 22);
            this.btnUndo2.Text = "Undo";
            this.btnUndo2.Click += new System.EventHandler(this.btnUndo2_Click);
            // 
            // btnRedo2
            // 
            this.btnRedo2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnRedo2.Image = ((System.Drawing.Image)(resources.GetObject("btnRedo2.Image")));
            this.btnRedo2.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnRedo2.Name = "btnRedo2";
            this.btnRedo2.Size = new System.Drawing.Size(23, 22);
            this.btnRedo2.Text = "Redo";
            this.btnRedo2.Click += new System.EventHandler(this.btnRedo2_Click);
            // 
            // toolStripSeparator8
            // 
            this.toolStripSeparator8.Name = "toolStripSeparator8";
            this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
            // 
            // btnAddPicture2
            // 
            this.btnAddPicture2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnAddPicture2.Image = ((System.Drawing.Image)(resources.GetObject("btnAddPicture2.Image")));
            this.btnAddPicture2.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnAddPicture2.Name = "btnAddPicture2";
            this.btnAddPicture2.Size = new System.Drawing.Size(23, 22);
            this.btnAddPicture2.Text = "Add Picture";
            this.btnAddPicture2.Click += new System.EventHandler(this.btnAddPicture2_Click);
            // 
            // btnColor2
            // 
            this.btnColor2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnColor2.Image = ((System.Drawing.Image)(resources.GetObject("btnColor2.Image")));
            this.btnColor2.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnColor2.Name = "btnColor2";
            this.btnColor2.Size = new System.Drawing.Size(23, 22);
            this.btnColor2.Text = "Text Color";
            this.btnColor2.Click += new System.EventHandler(this.btnColor2_Click);
            // 
            // btnHighLight2
            // 
            this.btnHighLight2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnHighLight2.Image = ((System.Drawing.Image)(resources.GetObject("btnHighLight2.Image")));
            this.btnHighLight2.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnHighLight2.Name = "btnHighLight2";
            this.btnHighLight2.Size = new System.Drawing.Size(23, 22);
            this.btnHighLight2.Text = "HighLight Color";
            this.btnHighLight2.Click += new System.EventHandler(this.btnHighLight2_Click);
            // 
            // lblDes
            // 
            this.lblDes.AutoSize = true;
            this.lblDes.BackColor = System.Drawing.Color.Transparent;
            this.lblDes.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblDes.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblDes.Location = new System.Drawing.Point(401, 298);
            this.lblDes.Name = "lblDes";
            this.lblDes.Size = new System.Drawing.Size(103, 13);
            this.lblDes.TabIndex = 86;
            this.lblDes.Text = "Task Description";
            // 
            // txtTaskName
            // 
            this.txtTaskName.BackColor = System.Drawing.Color.White;
            this.txtTaskName.Location = new System.Drawing.Point(12, 272);
            this.txtTaskName.Name = "txtTaskName";
            this.txtTaskName.Size = new System.Drawing.Size(770, 20);
            this.txtTaskName.TabIndex = 5;
            // 
            // lblTaskName
            // 
            this.lblTaskName.AutoSize = true;
            this.lblTaskName.BackColor = System.Drawing.Color.Transparent;
            this.lblTaskName.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblTaskName.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblTaskName.Location = new System.Drawing.Point(12, 256);
            this.lblTaskName.Name = "lblTaskName";
            this.lblTaskName.Size = new System.Drawing.Size(71, 13);
            this.lblTaskName.TabIndex = 90;
            this.lblTaskName.Text = "Task Name";
            this.lblTaskName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // nPA
            // 
            this.nPA.BackColor = System.Drawing.Color.White;
            this.nPA.Location = new System.Drawing.Point(244, 314);
            this.nPA.Name = "nPA";
            this.nPA.Size = new System.Drawing.Size(50, 20);
            this.nPA.TabIndex = 7;
            // 
            // nPPP
            // 
            this.nPPP.BackColor = System.Drawing.Color.White;
            this.nPPP.Location = new System.Drawing.Point(97, 314);
            this.nPPP.Name = "nPPP";
            this.nPPP.Size = new System.Drawing.Size(50, 20);
            this.nPPP.TabIndex = 6;
            // 
            // lblPA
            // 
            this.lblPA.AutoSize = true;
            this.lblPA.BackColor = System.Drawing.Color.Transparent;
            this.lblPA.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblPA.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblPA.Location = new System.Drawing.Point(153, 317);
            this.lblPA.Name = "lblPA";
            this.lblPA.Size = new System.Drawing.Size(85, 13);
            this.lblPA.TabIndex = 92;
            this.lblPA.Text = "Accomplished";
            // 
            // lblPPP
            // 
            this.lblPPP.AutoSize = true;
            this.lblPPP.BackColor = System.Drawing.Color.Transparent;
            this.lblPPP.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblPPP.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblPPP.Location = new System.Drawing.Point(13, 317);
            this.lblPPP.Name = "lblPPP";
            this.lblPPP.Size = new System.Drawing.Size(82, 13);
            this.lblPPP.TabIndex = 91;
            this.lblPPP.Text = "% per Project";
            // 
            // lblPTime
            // 
            this.lblPTime.AutoSize = true;
            this.lblPTime.BackColor = System.Drawing.Color.Transparent;
            this.lblPTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblPTime.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblPTime.Location = new System.Drawing.Point(12, 53);
            this.lblPTime.Name = "lblPTime";
            this.lblPTime.Size = new System.Drawing.Size(78, 13);
            this.lblPTime.TabIndex = 95;
            this.lblPTime.Text = "Project Time";
            // 
            // btnSave
            // 
            this.btnSave.BackColor = System.Drawing.Color.Transparent;
            this.btnSave.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnSave.FlatAppearance.BorderSize = 0;
            this.btnSave.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.GradientActiveCaption;
            this.btnSave.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Gold;
            this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
            this.btnSave.Location = new System.Drawing.Point(268, 475);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(27, 27);
            this.btnSave.TabIndex = 11;
            this.btnSave.UseVisualStyleBackColor = false;
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // lblHour
            // 
            this.lblHour.AutoSize = true;
            this.lblHour.BackColor = System.Drawing.Color.Transparent;
            this.lblHour.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblHour.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblHour.Location = new System.Drawing.Point(300, 317);
            this.lblHour.Name = "lblHour";
            this.lblHour.Size = new System.Drawing.Size(34, 13);
            this.lblHour.TabIndex = 97;
            this.lblHour.Text = "Hour";
            // 
            // nPH
            // 
            this.nPH.BackColor = System.Drawing.Color.White;
            this.nPH.Location = new System.Drawing.Point(340, 315);
            this.nPH.Maximum = new decimal(new int[] {
            96000,
            0,
            0,
            0});
            this.nPH.Name = "nPH";
            this.nPH.Size = new System.Drawing.Size(50, 20);
            this.nPH.TabIndex = 8;
            // 
            // lblTInfo
            // 
            this.lblTInfo.AutoSize = true;
            this.lblTInfo.BackColor = System.Drawing.Color.Transparent;
            this.lblTInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblTInfo.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblTInfo.Location = new System.Drawing.Point(12, 298);
            this.lblTInfo.Name = "lblTInfo";
            this.lblTInfo.Size = new System.Drawing.Size(61, 13);
            this.lblTInfo.TabIndex = 99;
            this.lblTInfo.Text = "Task Info";
            // 
            // btnBigSize
            // 
            this.btnBigSize.BackColor = System.Drawing.Color.Transparent;
            this.btnBigSize.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
            this.btnBigSize.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Gold;
            this.btnBigSize.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnBigSize.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnBigSize.Location = new System.Drawing.Point(769, 236);
            this.btnBigSize.Name = "btnBigSize";
            this.btnBigSize.Size = new System.Drawing.Size(25, 25);
            this.btnBigSize.TabIndex = 101;
            this.btnBigSize.Text = ">";
            this.btnBigSize.UseVisualStyleBackColor = false;
            this.btnBigSize.Click += new System.EventHandler(this.btnBigSize_Click);
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.Color.Transparent;
            this.panel1.Controls.Add(this.txtAbstract);
            this.panel1.Location = new System.Drawing.Point(5, 15);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(783, 218);
            this.panel1.TabIndex = 102;
            this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
            // 
            // txtAbstract
            // 
            this.txtAbstract.BackColor = System.Drawing.Color.White;
            this.txtAbstract.Location = new System.Drawing.Point(399, 80);
            this.txtAbstract.Name = "txtAbstract";
            charStyle1.Bold = false;
            charStyle1.Italic = false;
            charStyle1.Link = false;
            charStyle1.Strikeout = false;
            charStyle1.Underline = false;
            this.txtAbstract.SelectionCharStyle = charStyle1;
            this.txtAbstract.SelectionFont2 = new System.Drawing.Font("Microsoft Sans Serif", 5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Inch);
            paraLineSpacing1.ExactSpacing = 0;
            paraLineSpacing1.SpacingStyle = ExtendedRichTextBox.ParaLineSpacing.LineSpacingStyle.Unknown;
            this.txtAbstract.SelectionLineSpacing = paraLineSpacing1;
            paraListStyle1.BulletCharCode = ((short)(0));
            paraListStyle1.NumberingStart = ((short)(0));
            paraListStyle1.Style = ExtendedRichTextBox.ParaListStyle.ListStyle.NumberAndParenthesis;
            paraListStyle1.Type = ExtendedRichTextBox.ParaListStyle.ListType.None;
            this.txtAbstract.SelectionListType = paraListStyle1;
            this.txtAbstract.SelectionOffsetType = ExtendedRichTextBox.OffsetType.None;
            this.txtAbstract.SelectionSpaceAfter = 0;
            this.txtAbstract.SelectionSpaceBefore = 0;
            this.txtAbstract.Size = new System.Drawing.Size(378, 128);
            this.txtAbstract.TabIndex = 4;
            this.txtAbstract.Text = "";
            this.txtAbstract.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.txtAbstract_LinkClicked);
            this.txtAbstract.SelectionChanged += new System.EventHandler(this.txtAbstract_SelectionChanged);
            this.txtAbstract.MouseUp += new System.Windows.Forms.MouseEventHandler(this.txtAbstract_MouseUp);
            // 
            // panel2
            // 
            this.panel2.BackColor = System.Drawing.Color.Transparent;
            this.panel2.Controls.Add(this.txtTaskDes);
            this.panel2.Location = new System.Drawing.Point(5, 264);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(783, 247);
            this.panel2.TabIndex = 103;
            this.panel2.Paint += new System.Windows.Forms.PaintEventHandler(this.panel2_Paint);
            // 
            // txtTaskDes
            // 
            this.txtTaskDes.BackColor = System.Drawing.Color.White;
            this.txtTaskDes.Location = new System.Drawing.Point(399, 77);
            this.txtTaskDes.Name = "txtTaskDes";
            charStyle2.Bold = false;
            charStyle2.Italic = false;
            charStyle2.Link = false;
            charStyle2.Strikeout = false;
            charStyle2.Underline = false;
            this.txtTaskDes.SelectionCharStyle = charStyle2;
            this.txtTaskDes.SelectionFont2 = new System.Drawing.Font("Microsoft Sans Serif", 1F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Inch);
            paraLineSpacing2.ExactSpacing = 0;
            paraLineSpacing2.SpacingStyle = ExtendedRichTextBox.ParaLineSpacing.LineSpacingStyle.Unknown;
            this.txtTaskDes.SelectionLineSpacing = paraLineSpacing2;
            paraListStyle2.BulletCharCode = ((short)(0));
            paraListStyle2.NumberingStart = ((short)(0));
            paraListStyle2.Style = ExtendedRichTextBox.ParaListStyle.ListStyle.NumberAndParenthesis;
            paraListStyle2.Type = ExtendedRichTextBox.ParaListStyle.ListType.None;
            this.txtTaskDes.SelectionListType = paraListStyle2;
            this.txtTaskDes.SelectionOffsetType = ExtendedRichTextBox.OffsetType.None;
            this.txtTaskDes.SelectionSpaceAfter = 0;
            this.txtTaskDes.SelectionSpaceBefore = 0;
            this.txtTaskDes.Size = new System.Drawing.Size(378, 128);
            this.txtTaskDes.TabIndex = 10;
            this.txtTaskDes.Text = "";
            this.txtTaskDes.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.txtTaskDes_LinkClicked);
            this.txtTaskDes.SelectionChanged += new System.EventHandler(this.txtTaskDes_SelectionChanged);
            this.txtTaskDes.MouseUp += new System.Windows.Forms.MouseEventHandler(this.txtTaskDes_MouseUp);
            // 
            // NewSchedule
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
            this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.ClientSize = new System.Drawing.Size(794, 571);
            this.Controls.Add(this.btnBigSize);
            this.Controls.Add(this.lblProjectName);
            this.Controls.Add(this.lblTInfo);
            this.Controls.Add(this.nPH);
            this.Controls.Add(this.lblHour);
            this.Controls.Add(this.btnSave);
            this.Controls.Add(this.lblPTime);
            this.Controls.Add(this.nPA);
            this.Controls.Add(this.nPPP);
            this.Controls.Add(this.lblPA);
            this.Controls.Add(this.lblPPP);
            this.Controls.Add(this.lblTaskName);
            this.Controls.Add(this.txtTaskName);
            this.Controls.Add(this.tlsTask);
            this.Controls.Add(this.lblDes);
            this.Controls.Add(this.btnSaveAs);
            this.Controls.Add(this.btnDelete);
            this.Controls.Add(this.btnRefresh);
            this.Controls.Add(this.lstTasks);
            this.Controls.Add(this.tlsTool);
            this.Controls.Add(this.lblEnd);
            this.Controls.Add(this.dtEnd);
            this.Controls.Add(this.lblStart);
            this.Controls.Add(this.dtStart);
            this.Controls.Add(this.btnCancel);
            this.Controls.Add(this.btnOK);
            this.Controls.Add(this.PanelChart);
            this.Controls.Add(this.lblAbstract);
            this.Controls.Add(this.txtProject);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.panel1);
            this.DoubleBuffered = true;
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "NewSchedule";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "New Schedule";
            this.Load += new System.EventHandler(this.NewSchedule_Load);
            this.tlsTool.ResumeLayout(false);
            this.tlsTool.PerformLayout();
            this.tlsTask.ResumeLayout(false);
            this.tlsTask.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.nPA)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nPPP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nPH)).EndInit();
            this.panel1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NewTask));
            ExtendedRichTextBox.CharStyle charStyle1 = new ExtendedRichTextBox.CharStyle();
            ExtendedRichTextBox.ParaLineSpacing paraLineSpacing1 = new ExtendedRichTextBox.ParaLineSpacing();
            ExtendedRichTextBox.ParaListStyle paraListStyle1 = new ExtendedRichTextBox.ParaListStyle();
            this.txtTaskName = new System.Windows.Forms.TextBox();
            this.lblTaskName = new System.Windows.Forms.Label();
            this.lblPPP = new System.Windows.Forms.Label();
            this.lblPA = new System.Windows.Forms.Label();
            this.nPPP = new System.Windows.Forms.NumericUpDown();
            this.nPA = new System.Windows.Forms.NumericUpDown();
            this.btnCancel = new System.Windows.Forms.Button();
            this.btnOK = new System.Windows.Forms.Button();
            this.lblDes = new System.Windows.Forms.Label();
            this.tlsTool = new System.Windows.Forms.ToolStrip();
            this.btnBold = new System.Windows.Forms.ToolStripButton();
            this.btnItalic = new System.Windows.Forms.ToolStripButton();
            this.btnUnderline = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.btnAlignLeft = new System.Windows.Forms.ToolStripButton();
            this.btnAlignCenter = new System.Windows.Forms.ToolStripButton();
            this.btnAlignRight = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.cboFontSize = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.btnUndo = new System.Windows.Forms.ToolStripButton();
            this.btnRedo = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.btnAddPicture = new System.Windows.Forms.ToolStripButton();
            this.btnColor = new System.Windows.Forms.ToolStripButton();
            this.btnHighLightColor = new System.Windows.Forms.ToolStripButton();
            this.txtTaskDes = new ExtendedRichTextBox();
            ((System.ComponentModel.ISupportInitialize)(this.nPPP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nPA)).BeginInit();
            this.tlsTool.SuspendLayout();
            this.SuspendLayout();
            // 
            // txtTaskName
            // 
            this.txtTaskName.BackColor = System.Drawing.Color.White;
            this.txtTaskName.Location = new System.Drawing.Point(12, 31);
            this.txtTaskName.Name = "txtTaskName";
            this.txtTaskName.Size = new System.Drawing.Size(450, 20);
            this.txtTaskName.TabIndex = 31;
            // 
            // lblTaskName
            // 
            this.lblTaskName.BackColor = System.Drawing.Color.Transparent;
            this.lblTaskName.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblTaskName.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblTaskName.Location = new System.Drawing.Point(12, 7);
            this.lblTaskName.Name = "lblTaskName";
            this.lblTaskName.Size = new System.Drawing.Size(450, 21);
            this.lblTaskName.TabIndex = 30;
            this.lblTaskName.Text = "Task Name";
            this.lblTaskName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblPPP
            // 
            this.lblPPP.AutoSize = true;
            this.lblPPP.BackColor = System.Drawing.Color.Transparent;
            this.lblPPP.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblPPP.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblPPP.Location = new System.Drawing.Point(12, 61);
            this.lblPPP.Name = "lblPPP";
            this.lblPPP.Size = new System.Drawing.Size(117, 13);
            this.lblPPP.TabIndex = 32;
            this.lblPPP.Text = "Percent per Project";
            // 
            // lblPA
            // 
            this.lblPA.AutoSize = true;
            this.lblPA.BackColor = System.Drawing.Color.Transparent;
            this.lblPA.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblPA.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblPA.Location = new System.Drawing.Point(263, 61);
            this.lblPA.Name = "lblPA";
            this.lblPA.Size = new System.Drawing.Size(133, 13);
            this.lblPA.TabIndex = 33;
            this.lblPA.Text = "Percent Accomplished";
            // 
            // nPPP
            // 
            this.nPPP.BackColor = System.Drawing.Color.White;
            this.nPPP.Location = new System.Drawing.Point(151, 59);
            this.nPPP.Name = "nPPP";
            this.nPPP.Size = new System.Drawing.Size(60, 20);
            this.nPPP.TabIndex = 34;
            // 
            // nPA
            // 
            this.nPA.BackColor = System.Drawing.Color.White;
            this.nPA.Location = new System.Drawing.Point(402, 59);
            this.nPA.Name = "nPA";
            this.nPA.Size = new System.Drawing.Size(60, 20);
            this.nPA.TabIndex = 35;
            // 
            // btnCancel
            // 
            this.btnCancel.BackColor = System.Drawing.SystemColors.Control;
            this.btnCancel.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnCancel.BackgroundImage")));
            this.btnCancel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.btnCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnCancel.Image")));
            this.btnCancel.Location = new System.Drawing.Point(280, 285);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(79, 37);
            this.btnCancel.TabIndex = 80;
            this.btnCancel.UseVisualStyleBackColor = false;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            this.btnCancel.MouseLeave += new System.EventHandler(this.btnCancel_MouseLeave);
            this.btnCancel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnCancel_MouseMove);
            // 
            // btnOK
            // 
            this.btnOK.BackColor = System.Drawing.SystemColors.Control;
            this.btnOK.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnOK.BackgroundImage")));
            this.btnOK.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.btnOK.Image = ((System.Drawing.Image)(resources.GetObject("btnOK.Image")));
            this.btnOK.Location = new System.Drawing.Point(116, 285);
            this.btnOK.Name = "btnOK";
            this.btnOK.Size = new System.Drawing.Size(79, 37);
            this.btnOK.TabIndex = 79;
            this.btnOK.UseVisualStyleBackColor = false;
            this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
            this.btnOK.MouseLeave += new System.EventHandler(this.btnOK_MouseLeave);
            this.btnOK.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnOK_MouseMove);
            // 
            // lblDes
            // 
            this.lblDes.AutoSize = true;
            this.lblDes.BackColor = System.Drawing.Color.Transparent;
            this.lblDes.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblDes.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblDes.Location = new System.Drawing.Point(12, 85);
            this.lblDes.Name = "lblDes";
            this.lblDes.Size = new System.Drawing.Size(71, 13);
            this.lblDes.TabIndex = 82;
            this.lblDes.Text = "Description";
            // 
            // tlsTool
            // 
            this.tlsTool.AutoSize = false;
            this.tlsTool.Dock = System.Windows.Forms.DockStyle.None;
            this.tlsTool.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.tlsTool.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.btnBold,
            this.btnItalic,
            this.btnUnderline,
            this.toolStripSeparator1,
            this.btnAlignLeft,
            this.btnAlignCenter,
            this.btnAlignRight,
            this.toolStripSeparator2,
            this.cboFontSize,
            this.toolStripSeparator4,
            this.btnUndo,
            this.btnRedo,
            this.toolStripSeparator3,
            this.btnAddPicture,
            this.btnColor,
            this.btnHighLightColor});
            this.tlsTool.Location = new System.Drawing.Point(15, 102);
            this.tlsTool.Name = "tlsTool";
            this.tlsTool.Size = new System.Drawing.Size(447, 25);
            this.tlsTool.TabIndex = 84;
            this.tlsTool.Text = "toolStrip1";
            // 
            // btnBold
            // 
            this.btnBold.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnBold.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.btnBold.Image = ((System.Drawing.Image)(resources.GetObject("btnBold.Image")));
            this.btnBold.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnBold.Name = "btnBold";
            this.btnBold.Size = new System.Drawing.Size(23, 22);
            this.btnBold.Text = "B";
            this.btnBold.Click += new System.EventHandler(this.btnBold_Click);
            // 
            // btnItalic
            // 
            this.btnItalic.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnItalic.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.btnItalic.Image = ((System.Drawing.Image)(resources.GetObject("btnItalic.Image")));
            this.btnItalic.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnItalic.Name = "btnItalic";
            this.btnItalic.Size = new System.Drawing.Size(23, 22);
            this.btnItalic.Text = "I";
            this.btnItalic.Click += new System.EventHandler(this.btnItalic_Click);
            // 
            // btnUnderline
            // 
            this.btnUnderline.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnUnderline.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.btnUnderline.Image = ((System.Drawing.Image)(resources.GetObject("btnUnderline.Image")));
            this.btnUnderline.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnUnderline.Name = "btnUnderline";
            this.btnUnderline.Size = new System.Drawing.Size(23, 22);
            this.btnUnderline.Text = "U";
            this.btnUnderline.Click += new System.EventHandler(this.btnUnderline_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
            // 
            // btnAlignLeft
            // 
            this.btnAlignLeft.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnAlignLeft.Image = ((System.Drawing.Image)(resources.GetObject("btnAlignLeft.Image")));
            this.btnAlignLeft.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnAlignLeft.Name = "btnAlignLeft";
            this.btnAlignLeft.Size = new System.Drawing.Size(23, 22);
            this.btnAlignLeft.Text = "Align Left";
            this.btnAlignLeft.Click += new System.EventHandler(this.btnLeftAlign_Click);
            // 
            // btnAlignCenter
            // 
            this.btnAlignCenter.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnAlignCenter.Image = ((System.Drawing.Image)(resources.GetObject("btnAlignCenter.Image")));
            this.btnAlignCenter.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnAlignCenter.Name = "btnAlignCenter";
            this.btnAlignCenter.Size = new System.Drawing.Size(23, 22);
            this.btnAlignCenter.Text = "Align Center";
            this.btnAlignCenter.Click += new System.EventHandler(this.btnCenterAlign_Click);
            // 
            // btnAlignRight
            // 
            this.btnAlignRight.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnAlignRight.Image = ((System.Drawing.Image)(resources.GetObject("btnAlignRight.Image")));
            this.btnAlignRight.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnAlignRight.Name = "btnAlignRight";
            this.btnAlignRight.Size = new System.Drawing.Size(23, 22);
            this.btnAlignRight.Text = "Align Right";
            this.btnAlignRight.Click += new System.EventHandler(this.btnRightAlign_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
            // 
            // cboFontSize
            // 
            this.cboFontSize.AutoSize = false;
            this.cboFontSize.Items.AddRange(new object[] {
            "8",
            "9",
            "10",
            "11",
            "12",
            "14",
            "16",
            "18",
            "20",
            "22",
            "24",
            "26",
            "28",
            "36",
            "48",
            "72"});
            this.cboFontSize.Name = "cboFontSize";
            this.cboFontSize.Size = new System.Drawing.Size(35, 23);
            this.cboFontSize.Text = "8";
            this.cboFontSize.SelectedIndexChanged += new System.EventHandler(this.cboFontSize_SelectedIndexChanged);
            this.cboFontSize.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cboFontSize_KeyDown);
            this.cboFontSize.KeyUp += new System.Windows.Forms.KeyEventHandler(this.cboFontSize_KeyUp);
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
            // 
            // btnUndo
            // 
            this.btnUndo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnUndo.Image = ((System.Drawing.Image)(resources.GetObject("btnUndo.Image")));
            this.btnUndo.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnUndo.Name = "btnUndo";
            this.btnUndo.Size = new System.Drawing.Size(23, 22);
            this.btnUndo.Text = "Undo";
            this.btnUndo.Click += new System.EventHandler(this.btnUndo_Click);
            // 
            // btnRedo
            // 
            this.btnRedo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnRedo.Image = ((System.Drawing.Image)(resources.GetObject("btnRedo.Image")));
            this.btnRedo.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnRedo.Name = "btnRedo";
            this.btnRedo.Size = new System.Drawing.Size(23, 22);
            this.btnRedo.Text = "Redo";
            this.btnRedo.Click += new System.EventHandler(this.btnRedo_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
            // 
            // btnAddPicture
            // 
            this.btnAddPicture.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnAddPicture.Image = ((System.Drawing.Image)(resources.GetObject("btnAddPicture.Image")));
            this.btnAddPicture.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnAddPicture.Name = "btnAddPicture";
            this.btnAddPicture.Size = new System.Drawing.Size(23, 22);
            this.btnAddPicture.Text = "Add Picture";
            this.btnAddPicture.Click += new System.EventHandler(this.btnAddPicture_Click);
            // 
            // btnColor
            // 
            this.btnColor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnColor.Image = ((System.Drawing.Image)(resources.GetObject("btnColor.Image")));
            this.btnColor.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnColor.Name = "btnColor";
            this.btnColor.Size = new System.Drawing.Size(23, 22);
            this.btnColor.Text = "Text Color";
            this.btnColor.Click += new System.EventHandler(this.btnColor_Click);
            // 
            // btnHighLightColor
            // 
            this.btnHighLightColor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnHighLightColor.Image = ((System.Drawing.Image)(resources.GetObject("btnHighLightColor.Image")));
            this.btnHighLightColor.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnHighLightColor.Name = "btnHighLightColor";
            this.btnHighLightColor.Size = new System.Drawing.Size(23, 22);
            this.btnHighLightColor.Text = "HighLight Color";
            this.btnHighLightColor.Click += new System.EventHandler(this.btnHighLightColor_Click);
            // 
            // txtTaskDes
            // 
            this.txtTaskDes.BackColor = System.Drawing.Color.White;
            this.txtTaskDes.Location = new System.Drawing.Point(12, 130);
            this.txtTaskDes.Name = "txtTaskDes";
            charStyle1.Bold = false;
            charStyle1.Italic = false;
            charStyle1.Link = false;
            charStyle1.Strikeout = false;
            charStyle1.Underline = false;
            this.txtTaskDes.SelectionCharStyle = charStyle1;
            this.txtTaskDes.SelectionFont2 = new System.Drawing.Font("Microsoft Sans Serif", 5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Inch);
            paraLineSpacing1.ExactSpacing = 0;
            paraLineSpacing1.SpacingStyle = ExtendedRichTextBox.ParaLineSpacing.LineSpacingStyle.Unknown;
            this.txtTaskDes.SelectionLineSpacing = paraLineSpacing1;
            paraListStyle1.BulletCharCode = ((short)(0));
            paraListStyle1.NumberingStart = ((short)(0));
            paraListStyle1.Style = ExtendedRichTextBox.ParaListStyle.ListStyle.NumberAndParenthesis;
            paraListStyle1.Type = ExtendedRichTextBox.ParaListStyle.ListType.None;
            this.txtTaskDes.SelectionListType = paraListStyle1;
            this.txtTaskDes.SelectionOffsetType = ExtendedRichTextBox.OffsetType.None;
            this.txtTaskDes.SelectionSpaceAfter = 0;
            this.txtTaskDes.SelectionSpaceBefore = 0;
            this.txtTaskDes.Size = new System.Drawing.Size(450, 146);
            this.txtTaskDes.TabIndex = 85;
            this.txtTaskDes.Text = "";
            // 
            // NewTask
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
            this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.ClientSize = new System.Drawing.Size(474, 331);
            this.Controls.Add(this.txtTaskDes);
            this.Controls.Add(this.tlsTool);
            this.Controls.Add(this.lblDes);
            this.Controls.Add(this.btnCancel);
            this.Controls.Add(this.btnOK);
            this.Controls.Add(this.nPA);
            this.Controls.Add(this.nPPP);
            this.Controls.Add(this.lblPA);
            this.Controls.Add(this.lblPPP);
            this.Controls.Add(this.txtTaskName);
            this.Controls.Add(this.lblTaskName);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.Name = "NewTask";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "New Task";
            this.Load += new System.EventHandler(this.NewTask_Load);
            ((System.ComponentModel.ISupportInitialize)(this.nPPP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nPA)).EndInit();
            this.tlsTool.ResumeLayout(false);
            this.tlsTool.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Exemplo n.º 8
0
        public FlowControl()
        {
            InitializeComponent();

            ExtendedRichTextBox.CharStyle       charStyle1       = new ExtendedRichTextBox.CharStyle();
            ExtendedRichTextBox.ParaLineSpacing paraLineSpacing1 = new ExtendedRichTextBox.ParaLineSpacing();
            ExtendedRichTextBox.ParaListStyle   paraListStyle1   = new ExtendedRichTextBox.ParaListStyle();

            this.TextEditor.BorderStyle = System.Windows.Forms.BorderStyle.None;

            this.TextEditor.AcceptsTab         = true;
            this.TextEditor.EnableAutoDragDrop = true;
            this.TextEditor.HideSelection      = false;
            this.TextEditor.Name = "TextEditor";
            charStyle1.Bold      = false;
            charStyle1.Italic    = false;
            charStyle1.Link      = false;
            charStyle1.Strikeout = false;
            charStyle1.Underline = false;
            this.TextEditor.SelectionCharStyle   = charStyle1;
            this.TextEditor.SelectionFont2       = new System.Drawing.Font("Microsoft Sans Serif", 1F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Inch);
            paraLineSpacing1.ExactSpacing        = 0;
            paraLineSpacing1.SpacingStyle        = ExtendedRichTextBox.ParaLineSpacing.LineSpacingStyle.Unknown;
            this.TextEditor.SelectionLineSpacing = paraLineSpacing1;
            paraListStyle1.BulletCharCode        = ((short)(0));
            paraListStyle1.NumberingStart        = ((short)(0));
            paraListStyle1.Style = ExtendedRichTextBox.ParaListStyle.ListStyle.NumberAndParenthesis;
            paraListStyle1.Type  = ExtendedRichTextBox.ParaListStyle.ListType.None;
            this.TextEditor.SelectionListType    = paraListStyle1;
            this.TextEditor.SelectionOffsetType  = ExtendedRichTextBox.OffsetType.None;
            this.TextEditor.SelectionSpaceAfter  = 0;
            this.TextEditor.SelectionSpaceBefore = 0;

            this.TextEditor.TabIndex = 5;
            this.TextEditor.Text     = "";
            //this.TextEditor.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.TextEditor_LinkClicked);
            this.TextEditor.SelectionChanged += new System.EventHandler(this.TextEditor_SelectionChanged);
            this.TextEditor.MouseMove        += new System.Windows.Forms.MouseEventHandler(this.TextEditor_MouseMove);
            this.TextEditor.MouseUp          += new System.Windows.Forms.MouseEventHandler(this.TextEditor_MouseUp);
            this.TextEditor.ContentsResized  += new ContentsResizedEventHandler(this.TextEditor_ContentsResized);

            this.Ruler.BackColor                  = System.Drawing.Color.Transparent;
            this.Ruler.Font                       = new System.Drawing.Font("Arial", 7.25F);
            this.Ruler.LeftHangingIndent          = 0;
            this.Ruler.LeftIndent                 = 0;
            this.Ruler.LeftMargin                 = 1;
            this.Ruler.Name                       = "Ruler";
            this.Ruler.NoMargins                  = true;
            this.Ruler.RightIndent                = 0;
            this.Ruler.RightMargin                = 1;
            this.Ruler.TabIndex                   = 8;
            this.Ruler.TabsEnabled                = true;
            this.Ruler.LeftHangingIndentChanging += new TextRuler.IndentChangedEventHandler(this.Ruler_LeftHangingIndentChanging);
            this.Ruler.LeftIndentChanging        += new TextRuler.IndentChangedEventHandler(this.Ruler_LeftIndentChanging);
            this.Ruler.RightIndentChanging       += new TextRuler.IndentChangedEventHandler(this.Ruler_RightIndentChanging);
            this.Ruler.BothLeftIndentsChanged    += new TextRuler.MultiIndentChangedEventHandler(this.Ruler_BothLeftIndentsChanged);
            this.Ruler.TabAdded                  += new TextRuler.TabChangedEventHandler(this.Ruler_TabAdded);
            this.Ruler.TabRemoved                += new TextRuler.TabChangedEventHandler(this.Ruler_TabRemoved);
            this.Ruler.TabChanged                += new TextRuler.TabChangedEventHandler(this.Ruler_TabChanged);

            this.TextEditor.Select(0, 0);
            this.Ruler.LeftIndent                  = 0;
            this.Ruler.LeftHangingIndent           = 0;
            this.Ruler.RightIndent                 = 0;
            this.TextEditor.SelectionIndent        = 0;
            this.TextEditor.SelectionRightIndent   = 0;
            this.TextEditor.SelectionHangingIndent = 0;
            this.TextEditor.ScrollBars             = RichTextBoxScrollBars.None;
        }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ucRichText));
     ExtendedRichTextBox.CharStyle charStyle1 = new ExtendedRichTextBox.CharStyle();
     ExtendedRichTextBox.ParaLineSpacing paraLineSpacing1 = new ExtendedRichTextBox.ParaLineSpacing();
     ExtendedRichTextBox.ParaListStyle paraListStyle1 = new ExtendedRichTextBox.ParaListStyle();
     this.tlpMain = new System.Windows.Forms.TableLayoutPanel();
     this.cmsRightMouse = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mnuCopy = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuCut = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuPaste = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuConvert = new System.Windows.Forms.ToolStripMenuItem();
     this.tlsTool = new System.Windows.Forms.ToolStrip();
     this.btnBold = new System.Windows.Forms.ToolStripButton();
     this.btnItalic = new System.Windows.Forms.ToolStripButton();
     this.btnUnderline = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btnAlignLeft = new System.Windows.Forms.ToolStripButton();
     this.btnAlignCenter = new System.Windows.Forms.ToolStripButton();
     this.btnAlignRight = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btnUndo = new System.Windows.Forms.ToolStripButton();
     this.btnRedo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btnAddPicture = new System.Windows.Forms.ToolStripButton();
     this.btnColor = new System.Windows.Forms.ToolStripButton();
     this.btnHighLightColor = new System.Windows.Forms.ToolStripButton();
     this.rtxShow = new ExtendedRichTextBox();
     this.tlpMain.SuspendLayout();
     this.cmsRightMouse.SuspendLayout();
     this.tlsTool.SuspendLayout();
     this.SuspendLayout();
     //
     // tlpMain
     //
     this.tlpMain.ColumnCount = 1;
     this.tlpMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tlpMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tlpMain.Controls.Add(this.rtxShow, 0, 1);
     this.tlpMain.Controls.Add(this.tlsTool, 0, 0);
     this.tlpMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tlpMain.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.tlpMain.Location = new System.Drawing.Point(0, 0);
     this.tlpMain.Name = "tlpMain";
     this.tlpMain.RowCount = 2;
     this.tlpMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 27F));
     this.tlpMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tlpMain.Size = new System.Drawing.Size(620, 430);
     this.tlpMain.TabIndex = 1;
     //
     // cmsRightMouse
     //
     this.cmsRightMouse.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuCopy,
     this.mnuCut,
     this.mnuPaste,
     this.mnuConvert});
     this.cmsRightMouse.Name = "cmsRightMouse";
     this.cmsRightMouse.Size = new System.Drawing.Size(178, 92);
     //
     // mnuCopy
     //
     this.mnuCopy.Image = global::Reminiscent.Properties.Resources.btnCopy;
     this.mnuCopy.Name = "mnuCopy";
     this.mnuCopy.Size = new System.Drawing.Size(177, 22);
     this.mnuCopy.Text = "Copy";
     this.mnuCopy.Click += new System.EventHandler(this.mnuCopy_Click);
     //
     // mnuCut
     //
     this.mnuCut.Image = global::Reminiscent.Properties.Resources.btnCut;
     this.mnuCut.Name = "mnuCut";
     this.mnuCut.Size = new System.Drawing.Size(177, 22);
     this.mnuCut.Text = "Cut";
     this.mnuCut.Click += new System.EventHandler(this.mnuCut_Click);
     //
     // mnuPaste
     //
     this.mnuPaste.Image = global::Reminiscent.Properties.Resources.btnPaste;
     this.mnuPaste.Name = "mnuPaste";
     this.mnuPaste.Size = new System.Drawing.Size(177, 22);
     this.mnuPaste.Text = "Paste";
     this.mnuPaste.Click += new System.EventHandler(this.mnuPaste_Click);
     //
     // mnuConvert
     //
     this.mnuConvert.Name = "mnuConvert";
     this.mnuConvert.Size = new System.Drawing.Size(177, 22);
     this.mnuConvert.Text = "Convert to Rtf code";
     this.mnuConvert.Click += new System.EventHandler(this.mnuConvert_Click);
     //
     // tlsTool
     //
     this.tlsTool.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.tlsTool.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btnBold,
     this.btnItalic,
     this.btnUnderline,
     this.toolStripSeparator1,
     this.btnAlignLeft,
     this.btnAlignCenter,
     this.btnAlignRight,
     this.toolStripSeparator2,
     this.btnUndo,
     this.btnRedo,
     this.toolStripSeparator3,
     this.btnAddPicture,
     this.btnColor,
     this.btnHighLightColor});
     this.tlsTool.Location = new System.Drawing.Point(0, 0);
     this.tlsTool.Name = "tlsTool";
     this.tlsTool.Size = new System.Drawing.Size(620, 25);
     this.tlsTool.TabIndex = 1;
     this.tlsTool.Text = "toolStrip1";
     //
     // btnBold
     //
     this.btnBold.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnBold.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnBold.Image = ((System.Drawing.Image)(resources.GetObject("btnBold.Image")));
     this.btnBold.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnBold.Name = "btnBold";
     this.btnBold.Size = new System.Drawing.Size(23, 22);
     this.btnBold.Text = "B";
     this.btnBold.Click += new System.EventHandler(this.btnBold_Click);
     //
     // btnItalic
     //
     this.btnItalic.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnItalic.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnItalic.Image = ((System.Drawing.Image)(resources.GetObject("btnItalic.Image")));
     this.btnItalic.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnItalic.Name = "btnItalic";
     this.btnItalic.Size = new System.Drawing.Size(23, 22);
     this.btnItalic.Text = "I";
     this.btnItalic.Click += new System.EventHandler(this.btnItalic_Click);
     //
     // btnUnderline
     //
     this.btnUnderline.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnUnderline.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnUnderline.Image = ((System.Drawing.Image)(resources.GetObject("btnUnderline.Image")));
     this.btnUnderline.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnUnderline.Name = "btnUnderline";
     this.btnUnderline.Size = new System.Drawing.Size(23, 22);
     this.btnUnderline.Text = "U";
     this.btnUnderline.Click += new System.EventHandler(this.btnUnderline_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // btnAlignLeft
     //
     this.btnAlignLeft.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnAlignLeft.Image = global::Reminiscent.Properties.Resources.btnAlignLeft;
     this.btnAlignLeft.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAlignLeft.Name = "btnAlignLeft";
     this.btnAlignLeft.Size = new System.Drawing.Size(23, 22);
     this.btnAlignLeft.Text = "toolStripButton1";
     this.btnAlignLeft.Click += new System.EventHandler(this.btnLeftAlign_Click);
     //
     // btnAlignCenter
     //
     this.btnAlignCenter.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnAlignCenter.Image = global::Reminiscent.Properties.Resources.btnAlignCenter;
     this.btnAlignCenter.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAlignCenter.Name = "btnAlignCenter";
     this.btnAlignCenter.Size = new System.Drawing.Size(23, 22);
     this.btnAlignCenter.Text = "toolStripButton1";
     this.btnAlignCenter.Click += new System.EventHandler(this.btnCenterAlign_Click);
     //
     // btnAlignRight
     //
     this.btnAlignRight.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnAlignRight.Image = global::Reminiscent.Properties.Resources.btnAlignRight;
     this.btnAlignRight.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAlignRight.Name = "btnAlignRight";
     this.btnAlignRight.Size = new System.Drawing.Size(23, 22);
     this.btnAlignRight.Text = "toolStripButton1";
     this.btnAlignRight.Click += new System.EventHandler(this.btnRightAlign_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // btnUndo
     //
     this.btnUndo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnUndo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnUndo.Name = "btnUndo";
     this.btnUndo.Size = new System.Drawing.Size(23, 22);
     this.btnUndo.Text = "toolStripButton1";
     this.btnUndo.Click += new System.EventHandler(this.btnUndo_Click);
     //
     // btnRedo
     //
     this.btnRedo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnRedo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnRedo.Name = "btnRedo";
     this.btnRedo.Size = new System.Drawing.Size(23, 22);
     this.btnRedo.Text = "toolStripButton1";
     this.btnRedo.Click += new System.EventHandler(this.btnRedo_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // btnAddPicture
     //
     this.btnAddPicture.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnAddPicture.Image = global::Reminiscent.Properties.Resources.mnuInsertPicture;
     this.btnAddPicture.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAddPicture.Name = "btnAddPicture";
     this.btnAddPicture.Size = new System.Drawing.Size(23, 22);
     this.btnAddPicture.Text = "toolStripButton1";
     this.btnAddPicture.Click += new System.EventHandler(this.btnAddPicture_Click);
     //
     // btnColor
     //
     this.btnColor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnColor.Image = global::Reminiscent.Properties.Resources.mnuTextColor;
     this.btnColor.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnColor.Name = "btnColor";
     this.btnColor.Size = new System.Drawing.Size(23, 22);
     this.btnColor.Text = "toolStripButton1";
     this.btnColor.Click += new System.EventHandler(this.btnColor_Click);
     //
     // btnHighLightColor
     //
     this.btnHighLightColor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnHighLightColor.Image = global::Reminiscent.Properties.Resources.mnuHighlightColor;
     this.btnHighLightColor.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnHighLightColor.Name = "btnHighLightColor";
     this.btnHighLightColor.Size = new System.Drawing.Size(23, 22);
     this.btnHighLightColor.Text = "toolStripButton1";
     this.btnHighLightColor.Click += new System.EventHandler(this.btnHighLightColor_Click);
     //
     // rtxShow
     //
     this.rtxShow.BackColor = System.Drawing.Color.Honeydew;
     this.rtxShow.ContextMenuStrip = this.cmsRightMouse;
     this.rtxShow.Dock = System.Windows.Forms.DockStyle.Fill;
     this.rtxShow.Location = new System.Drawing.Point(3, 30);
     this.rtxShow.Name = "rtxShow";
     charStyle1.Bold = false;
     charStyle1.Italic = false;
     charStyle1.Link = false;
     charStyle1.Strikeout = false;
     charStyle1.Underline = false;
     this.rtxShow.SelectionCharStyle = charStyle1;
     this.rtxShow.SelectionFont2 = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Inch);
     paraLineSpacing1.ExactSpacing = 0;
     paraLineSpacing1.SpacingStyle = ExtendedRichTextBox.ParaLineSpacing.LineSpacingStyle.Unknown;
     this.rtxShow.SelectionLineSpacing = paraLineSpacing1;
     paraListStyle1.BulletCharCode = ((short)(0));
     paraListStyle1.NumberingStart = ((short)(0));
     paraListStyle1.Style = ExtendedRichTextBox.ParaListStyle.ListStyle.NumberAndParenthesis;
     paraListStyle1.Type = ExtendedRichTextBox.ParaListStyle.ListType.None;
     this.rtxShow.SelectionListType = paraListStyle1;
     this.rtxShow.SelectionOffsetType = ExtendedRichTextBox.OffsetType.None;
     this.rtxShow.SelectionSpaceAfter = 0;
     this.rtxShow.SelectionSpaceBefore = 0;
     this.rtxShow.Size = new System.Drawing.Size(614, 397);
     this.rtxShow.TabIndex = 2;
     this.rtxShow.Text = "";
     //
     // ucRichText
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ContextMenuStrip = this.cmsRightMouse;
     this.Controls.Add(this.tlpMain);
     this.Name = "ucRichText";
     this.Size = new System.Drawing.Size(620, 430);
     this.tlpMain.ResumeLayout(false);
     this.tlpMain.PerformLayout();
     this.cmsRightMouse.ResumeLayout(false);
     this.tlsTool.ResumeLayout(false);
     this.tlsTool.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 10
0
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UC_Idea));
            ExtendedRichTextBox.CharStyle charStyle1 = new ExtendedRichTextBox.CharStyle();
            ExtendedRichTextBox.ParaLineSpacing paraLineSpacing1 = new ExtendedRichTextBox.ParaLineSpacing();
            ExtendedRichTextBox.ParaListStyle paraListStyle1 = new ExtendedRichTextBox.ParaListStyle();
            this.lvwIdeas = new System.Windows.Forms.ListView();
            this.clDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.clName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.clDes = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.lblAlarmTitle = new System.Windows.Forms.Label();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.btnRefresh = new System.Windows.Forms.Button();
            this.btnSave = new System.Windows.Forms.Button();
            this.btnDelete = new System.Windows.Forms.Button();
            this.btnSaveAs = new System.Windows.Forms.Button();
            this.rtxShow = new ExtendedRichTextBox();
            this.tlsTool = new System.Windows.Forms.ToolStrip();
            this.btnBold = new System.Windows.Forms.ToolStripButton();
            this.btnItalic = new System.Windows.Forms.ToolStripButton();
            this.btnUnderline = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.btnAlignLeft = new System.Windows.Forms.ToolStripButton();
            this.btnAlignCenter = new System.Windows.Forms.ToolStripButton();
            this.btnAlignRight = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.cboSize = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.btnUndo = new System.Windows.Forms.ToolStripButton();
            this.btnRedo = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.btnAddPicture = new System.Windows.Forms.ToolStripButton();
            this.btnColor = new System.Windows.Forms.ToolStripButton();
            this.btnHighLightColor = new System.Windows.Forms.ToolStripButton();
            this.dtpDate = new System.Windows.Forms.DateTimePicker();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.txtName = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.groupBox1.SuspendLayout();
            this.tlsTool.SuspendLayout();
            this.SuspendLayout();
            // 
            // lvwIdeas
            // 
            this.lvwIdeas.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.clDate,
            this.clName,
            this.clDes});
            this.lvwIdeas.FullRowSelect = true;
            this.lvwIdeas.GridLines = true;
            this.lvwIdeas.Location = new System.Drawing.Point(465, 80);
            this.lvwIdeas.MultiSelect = false;
            this.lvwIdeas.Name = "lvwIdeas";
            this.lvwIdeas.Size = new System.Drawing.Size(438, 372);
            this.lvwIdeas.TabIndex = 9;
            this.lvwIdeas.UseCompatibleStateImageBehavior = false;
            this.lvwIdeas.View = System.Windows.Forms.View.Details;
            this.lvwIdeas.SelectedIndexChanged += new System.EventHandler(this.lvwIdeas_SelectedIndexChanged);
            // 
            // clDate
            // 
            this.clDate.Text = "Date";
            this.clDate.Width = 80;
            // 
            // clName
            // 
            this.clName.Text = "Name";
            this.clName.Width = 130;
            // 
            // clDes
            // 
            this.clDes.Text = "Description";
            this.clDes.Width = 214;
            // 
            // lblAlarmTitle
            // 
            this.lblAlarmTitle.BackColor = System.Drawing.Color.Transparent;
            this.lblAlarmTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.lblAlarmTitle.Location = new System.Drawing.Point(0, 21);
            this.lblAlarmTitle.Name = "lblAlarmTitle";
            this.lblAlarmTitle.Size = new System.Drawing.Size(930, 37);
            this.lblAlarmTitle.TabIndex = 17;
            this.lblAlarmTitle.Text = "List Ideas";
            this.lblAlarmTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // groupBox1
            // 
            this.groupBox1.BackColor = System.Drawing.Color.Transparent;
            this.groupBox1.Controls.Add(this.btnRefresh);
            this.groupBox1.Controls.Add(this.btnSave);
            this.groupBox1.Controls.Add(this.btnDelete);
            this.groupBox1.Controls.Add(this.btnSaveAs);
            this.groupBox1.Controls.Add(this.rtxShow);
            this.groupBox1.Controls.Add(this.tlsTool);
            this.groupBox1.Controls.Add(this.dtpDate);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.txtName);
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Location = new System.Drawing.Point(26, 74);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(413, 378);
            this.groupBox1.TabIndex = 23;
            this.groupBox1.TabStop = false;
            // 
            // btnRefresh
            // 
            this.btnRefresh.BackColor = System.Drawing.SystemColors.Control;
            this.btnRefresh.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnRefresh.BackgroundImage")));
            this.btnRefresh.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnRefresh.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.btnRefresh.Image = ((System.Drawing.Image)(resources.GetObject("btnRefresh.Image")));
            this.btnRefresh.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
            this.btnRefresh.Location = new System.Drawing.Point(221, 289);
            this.btnRefresh.Name = "btnRefresh";
            this.btnRefresh.Size = new System.Drawing.Size(59, 50);
            this.btnRefresh.TabIndex = 5;
            this.btnRefresh.Text = "Refresh";
            this.btnRefresh.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.btnRefresh.UseVisualStyleBackColor = false;
            this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
            // 
            // btnSave
            // 
            this.btnSave.BackColor = System.Drawing.SystemColors.Control;
            this.btnSave.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSave.BackgroundImage")));
            this.btnSave.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
            this.btnSave.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
            this.btnSave.Location = new System.Drawing.Point(43, 289);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(59, 50);
            this.btnSave.TabIndex = 3;
            this.btnSave.Text = "Save";
            this.btnSave.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.btnSave.UseVisualStyleBackColor = false;
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // btnDelete
            // 
            this.btnDelete.BackColor = System.Drawing.SystemColors.Control;
            this.btnDelete.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnDelete.BackgroundImage")));
            this.btnDelete.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.btnDelete.Image = ((System.Drawing.Image)(resources.GetObject("btnDelete.Image")));
            this.btnDelete.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
            this.btnDelete.Location = new System.Drawing.Point(310, 289);
            this.btnDelete.Name = "btnDelete";
            this.btnDelete.Size = new System.Drawing.Size(59, 50);
            this.btnDelete.TabIndex = 6;
            this.btnDelete.Text = "Delete";
            this.btnDelete.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.btnDelete.UseVisualStyleBackColor = false;
            this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
            // 
            // btnSaveAs
            // 
            this.btnSaveAs.BackColor = System.Drawing.SystemColors.Control;
            this.btnSaveAs.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSaveAs.BackgroundImage")));
            this.btnSaveAs.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnSaveAs.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.btnSaveAs.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveAs.Image")));
            this.btnSaveAs.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
            this.btnSaveAs.Location = new System.Drawing.Point(132, 289);
            this.btnSaveAs.Name = "btnSaveAs";
            this.btnSaveAs.Size = new System.Drawing.Size(59, 50);
            this.btnSaveAs.TabIndex = 4;
            this.btnSaveAs.Text = "Save As";
            this.btnSaveAs.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.btnSaveAs.UseVisualStyleBackColor = false;
            this.btnSaveAs.Click += new System.EventHandler(this.btnSaveAs_Click);
            // 
            // rtxShow
            // 
            this.rtxShow.BackColor = System.Drawing.Color.Honeydew;
            this.rtxShow.Location = new System.Drawing.Point(43, 154);
            this.rtxShow.Name = "rtxShow";
            this.rtxShow.ReadOnly = true;
            charStyle1.Bold = false;
            charStyle1.Italic = false;
            charStyle1.Link = false;
            charStyle1.Strikeout = false;
            charStyle1.Underline = false;
            this.rtxShow.SelectionCharStyle = charStyle1;
            this.rtxShow.SelectionFont2 = new System.Drawing.Font("Microsoft Sans Serif", 3F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Inch);
            paraLineSpacing1.ExactSpacing = 0;
            paraLineSpacing1.SpacingStyle = ExtendedRichTextBox.ParaLineSpacing.LineSpacingStyle.Unknown;
            this.rtxShow.SelectionLineSpacing = paraLineSpacing1;
            paraListStyle1.BulletCharCode = ((short)(0));
            paraListStyle1.NumberingStart = ((short)(0));
            paraListStyle1.Style = ExtendedRichTextBox.ParaListStyle.ListStyle.NumberAndParenthesis;
            paraListStyle1.Type = ExtendedRichTextBox.ParaListStyle.ListType.None;
            this.rtxShow.SelectionListType = paraListStyle1;
            this.rtxShow.SelectionOffsetType = ExtendedRichTextBox.OffsetType.None;
            this.rtxShow.SelectionSpaceAfter = 0;
            this.rtxShow.SelectionSpaceBefore = 0;
            this.rtxShow.Size = new System.Drawing.Size(326, 97);
            this.rtxShow.TabIndex = 2;
            this.rtxShow.Text = "";
            // 
            // tlsTool
            // 
            this.tlsTool.Dock = System.Windows.Forms.DockStyle.None;
            this.tlsTool.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.tlsTool.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.btnBold,
            this.btnItalic,
            this.btnUnderline,
            this.toolStripSeparator1,
            this.btnAlignLeft,
            this.btnAlignCenter,
            this.btnAlignRight,
            this.toolStripSeparator2,
            this.cboSize,
            this.toolStripSeparator4,
            this.btnUndo,
            this.btnRedo,
            this.toolStripSeparator3,
            this.btnAddPicture,
            this.btnColor,
            this.btnHighLightColor});
            this.tlsTool.Location = new System.Drawing.Point(43, 129);
            this.tlsTool.Name = "tlsTool";
            this.tlsTool.Size = new System.Drawing.Size(326, 25);
            this.tlsTool.TabIndex = 22;
            this.tlsTool.Text = "toolStrip1";
            // 
            // btnBold
            // 
            this.btnBold.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnBold.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.btnBold.Image = ((System.Drawing.Image)(resources.GetObject("btnBold.Image")));
            this.btnBold.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnBold.Name = "btnBold";
            this.btnBold.Size = new System.Drawing.Size(23, 22);
            this.btnBold.Text = "B";
            this.btnBold.Click += new System.EventHandler(this.btnBold_Click);
            // 
            // btnItalic
            // 
            this.btnItalic.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnItalic.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.btnItalic.Image = ((System.Drawing.Image)(resources.GetObject("btnItalic.Image")));
            this.btnItalic.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnItalic.Name = "btnItalic";
            this.btnItalic.Size = new System.Drawing.Size(23, 22);
            this.btnItalic.Text = "I";
            this.btnItalic.Click += new System.EventHandler(this.btnItalic_Click);
            // 
            // btnUnderline
            // 
            this.btnUnderline.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnUnderline.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.btnUnderline.Image = ((System.Drawing.Image)(resources.GetObject("btnUnderline.Image")));
            this.btnUnderline.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnUnderline.Name = "btnUnderline";
            this.btnUnderline.Size = new System.Drawing.Size(23, 22);
            this.btnUnderline.Text = "U";
            this.btnUnderline.Click += new System.EventHandler(this.btnUnderline_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
            // 
            // btnAlignLeft
            // 
            this.btnAlignLeft.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnAlignLeft.Image = ((System.Drawing.Image)(resources.GetObject("btnAlignLeft.Image")));
            this.btnAlignLeft.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnAlignLeft.Name = "btnAlignLeft";
            this.btnAlignLeft.Size = new System.Drawing.Size(23, 22);
            this.btnAlignLeft.Text = "toolStripButton1";
            this.btnAlignLeft.Click += new System.EventHandler(this.btnLeftAlign_Click);
            // 
            // btnAlignCenter
            // 
            this.btnAlignCenter.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnAlignCenter.Image = ((System.Drawing.Image)(resources.GetObject("btnAlignCenter.Image")));
            this.btnAlignCenter.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnAlignCenter.Name = "btnAlignCenter";
            this.btnAlignCenter.Size = new System.Drawing.Size(23, 22);
            this.btnAlignCenter.Text = "toolStripButton1";
            this.btnAlignCenter.Click += new System.EventHandler(this.btnCenterAlign_Click);
            // 
            // btnAlignRight
            // 
            this.btnAlignRight.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnAlignRight.Image = ((System.Drawing.Image)(resources.GetObject("btnAlignRight.Image")));
            this.btnAlignRight.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnAlignRight.Name = "btnAlignRight";
            this.btnAlignRight.Size = new System.Drawing.Size(23, 22);
            this.btnAlignRight.Text = "toolStripButton1";
            this.btnAlignRight.Click += new System.EventHandler(this.btnRightAlign_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
            // 
            // cboSize
            // 
            this.cboSize.AutoSize = false;
            this.cboSize.Items.AddRange(new object[] {
            "8",
            "9",
            "10",
            "11",
            "12",
            "14",
            "16",
            "18",
            "20",
            "22",
            "24",
            "26",
            "28",
            "36",
            "48",
            "72"});
            this.cboSize.Name = "cboSize";
            this.cboSize.Size = new System.Drawing.Size(35, 23);
            this.cboSize.Text = "8";
            this.cboSize.SelectedIndexChanged += new System.EventHandler(this.cboSize_SelectedIndexChanged);
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
            // 
            // btnUndo
            // 
            this.btnUndo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnUndo.Image = ((System.Drawing.Image)(resources.GetObject("btnUndo.Image")));
            this.btnUndo.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnUndo.Name = "btnUndo";
            this.btnUndo.Size = new System.Drawing.Size(23, 22);
            this.btnUndo.Text = "toolStripButton1";
            this.btnUndo.Click += new System.EventHandler(this.btnUndo_Click);
            // 
            // btnRedo
            // 
            this.btnRedo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnRedo.Image = ((System.Drawing.Image)(resources.GetObject("btnRedo.Image")));
            this.btnRedo.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnRedo.Name = "btnRedo";
            this.btnRedo.Size = new System.Drawing.Size(23, 22);
            this.btnRedo.Text = "toolStripButton1";
            this.btnRedo.Click += new System.EventHandler(this.btnRedo_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
            // 
            // btnAddPicture
            // 
            this.btnAddPicture.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnAddPicture.Image = ((System.Drawing.Image)(resources.GetObject("btnAddPicture.Image")));
            this.btnAddPicture.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnAddPicture.Name = "btnAddPicture";
            this.btnAddPicture.Size = new System.Drawing.Size(23, 22);
            this.btnAddPicture.Text = "toolStripButton1";
            this.btnAddPicture.Click += new System.EventHandler(this.btnAddPicture_Click);
            // 
            // btnColor
            // 
            this.btnColor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnColor.Image = ((System.Drawing.Image)(resources.GetObject("btnColor.Image")));
            this.btnColor.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnColor.Name = "btnColor";
            this.btnColor.Size = new System.Drawing.Size(23, 22);
            this.btnColor.Text = "toolStripButton1";
            this.btnColor.Click += new System.EventHandler(this.btnColor_Click);
            // 
            // btnHighLightColor
            // 
            this.btnHighLightColor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.btnHighLightColor.Image = global::Reminiscent.Properties.Resources.mnuHighlightColor;
            this.btnHighLightColor.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnHighLightColor.Name = "btnHighLightColor";
            this.btnHighLightColor.Size = new System.Drawing.Size(23, 22);
            this.btnHighLightColor.Text = "toolStripButton1";
            this.btnHighLightColor.Click += new System.EventHandler(this.btnHighLightColor_Click);
            // 
            // dtpDate
            // 
            this.dtpDate.Enabled = false;
            this.dtpDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtpDate.Location = new System.Drawing.Point(106, 25);
            this.dtpDate.Name = "dtpDate";
            this.dtpDate.Size = new System.Drawing.Size(169, 20);
            this.dtpDate.TabIndex = 0;
            this.dtpDate.Value = new System.DateTime(2014, 3, 2, 18, 46, 0, 0);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.BackColor = System.Drawing.Color.Transparent;
            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location = new System.Drawing.Point(40, 71);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(43, 13);
            this.label1.TabIndex = 0;
            this.label1.Text = "Name:";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.BackColor = System.Drawing.Color.Transparent;
            this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.Location = new System.Drawing.Point(40, 106);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(75, 13);
            this.label2.TabIndex = 1;
            this.label2.Text = "Description:";
            // 
            // txtName
            // 
            this.txtName.BackColor = System.Drawing.Color.White;
            this.txtName.Location = new System.Drawing.Point(106, 68);
            this.txtName.Name = "txtName";
            this.txtName.ReadOnly = true;
            this.txtName.Size = new System.Drawing.Size(169, 20);
            this.txtName.TabIndex = 1;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.BackColor = System.Drawing.Color.Transparent;
            this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label3.Location = new System.Drawing.Point(40, 29);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(38, 13);
            this.label3.TabIndex = 5;
            this.label3.Text = "Date:";
            // 
            // UC_Idea
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.Transparent;
            this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.lblAlarmTitle);
            this.Controls.Add(this.lvwIdeas);
            this.Name = "UC_Idea";
            this.Size = new System.Drawing.Size(930, 473);
            this.Load += new System.EventHandler(this.UC_Idea_Load);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.tlsTool.ResumeLayout(false);
            this.tlsTool.PerformLayout();
            this.ResumeLayout(false);

        }