--- trunk/RomCheater.PluginFramework/Core/ScratchPad.Designer.cs 2013/06/17 05:41:23 674 +++ trunk/RomCheater.PluginFramework/Core/ScratchPad.Designer.cs 2013/06/17 06:03:28 676 @@ -28,20 +28,97 @@ /// </summary> private void InitializeComponent() { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ScratchPad)); + this.toolStrip1 = new System.Windows.Forms.ToolStrip(); + this.mnuItemSave = new System.Windows.Forms.ToolStripButton(); + this.mnuItemOpen = new System.Windows.Forms.ToolStripButton(); + this.ScracthPadSaver = new System.Windows.Forms.SaveFileDialog(); + this.ScracthPadLoader = new System.Windows.Forms.OpenFileDialog(); + this.txtScratchPad = new System.Windows.Forms.RichTextBox(); + this.toolStrip1.SuspendLayout(); this.SuspendLayout(); // + // toolStrip1 + // + this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.mnuItemSave, + this.mnuItemOpen}); + this.toolStrip1.Location = new System.Drawing.Point(0, 0); + this.toolStrip1.Name = "toolStrip1"; + this.toolStrip1.Size = new System.Drawing.Size(743, 25); + this.toolStrip1.TabIndex = 0; + this.toolStrip1.Text = "toolStrip1"; + // + // mnuItemSave + // + this.mnuItemSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; + this.mnuItemSave.Image = ((System.Drawing.Image)(resources.GetObject("mnuItemSave.Image"))); + this.mnuItemSave.ImageTransparentColor = System.Drawing.Color.Magenta; + this.mnuItemSave.Name = "mnuItemSave"; + this.mnuItemSave.Size = new System.Drawing.Size(35, 22); + this.mnuItemSave.Text = "&Save"; + this.mnuItemSave.Click += new System.EventHandler(this.mnuItemSave_Click); + // + // mnuItemOpen + // + this.mnuItemOpen.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; + this.mnuItemOpen.Image = ((System.Drawing.Image)(resources.GetObject("mnuItemOpen.Image"))); + this.mnuItemOpen.ImageTransparentColor = System.Drawing.Color.Magenta; + this.mnuItemOpen.Name = "mnuItemOpen"; + this.mnuItemOpen.Size = new System.Drawing.Size(40, 22); + this.mnuItemOpen.Text = "&Open"; + this.mnuItemOpen.Click += new System.EventHandler(this.mnuItemOpen_Click); + // + // ScracthPadSaver + // + this.ScracthPadSaver.DefaultExt = "txt"; + this.ScracthPadSaver.Filter = "Text Files|*.txt|All Files|*.*"; + this.ScracthPadSaver.SupportMultiDottedExtensions = true; + this.ScracthPadSaver.Title = "Please choose the fail to save"; + // + // ScracthPadLoader + // + this.ScracthPadLoader.DefaultExt = "txt"; + this.ScracthPadLoader.Filter = "Text Files|*.txt|All Files|*.*"; + this.ScracthPadLoader.SupportMultiDottedExtensions = true; + this.ScracthPadLoader.Title = "Please choose the file to load"; + // + // txtScratchPad + // + this.txtScratchPad.Dock = System.Windows.Forms.DockStyle.Fill; + this.txtScratchPad.ForeColor = System.Drawing.SystemColors.GrayText; + this.txtScratchPad.Location = new System.Drawing.Point(0, 25); + this.txtScratchPad.Name = "txtScratchPad"; + this.txtScratchPad.Size = new System.Drawing.Size(743, 362); + this.txtScratchPad.TabIndex = 1; + this.txtScratchPad.Text = ""; + this.txtScratchPad.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtScratchPad_KeyDown); + this.txtScratchPad.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txtScratchPad_MouseDown); + // // ScratchPad // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(284, 262); + this.ClientSize = new System.Drawing.Size(743, 387); + this.Controls.Add(this.txtScratchPad); + this.Controls.Add(this.toolStrip1); this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Name = "ScratchPad"; this.Text = "Scratch Pad"; + this.toolStrip1.ResumeLayout(false); + this.toolStrip1.PerformLayout(); this.ResumeLayout(false); + this.PerformLayout(); } #endregion + + private System.Windows.Forms.ToolStrip toolStrip1; + private System.Windows.Forms.ToolStripButton mnuItemSave; + private System.Windows.Forms.ToolStripButton mnuItemOpen; + private System.Windows.Forms.SaveFileDialog ScracthPadSaver; + private System.Windows.Forms.OpenFileDialog ScracthPadLoader; + private System.Windows.Forms.RichTextBox txtScratchPad; } } \ No newline at end of file |