1 |
namespace RomCheater.ScratchPad |
2 |
{ |
3 |
partial class ScratchPadDocument |
4 |
{ |
5 |
/// <summary> |
6 |
/// Required designer variable. |
7 |
/// </summary> |
8 |
private System.ComponentModel.IContainer components = null; |
9 |
|
10 |
/// <summary> |
11 |
/// Clean up any resources being used. |
12 |
/// </summary> |
13 |
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
14 |
protected override void Dispose(bool disposing) |
15 |
{ |
16 |
if (disposing && (components != null)) |
17 |
{ |
18 |
components.Dispose(); |
19 |
} |
20 |
base.Dispose(disposing); |
21 |
} |
22 |
|
23 |
#region Windows Form Designer generated code |
24 |
|
25 |
/// <summary> |
26 |
/// Required method for Designer support - do not modify |
27 |
/// the contents of this method with the code editor. |
28 |
/// </summary> |
29 |
private void InitializeComponent() |
30 |
{ |
31 |
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ScratchPadDocument)); |
32 |
this.txtEditor = new System.Windows.Forms.RichTextBox(); |
33 |
this.toolStrip1 = new System.Windows.Forms.ToolStrip(); |
34 |
this.mnuItemOpen = new System.Windows.Forms.ToolStripButton(); |
35 |
this.mnuItemSave = new System.Windows.Forms.ToolStripButton(); |
36 |
this.mnuItemClose = new System.Windows.Forms.ToolStripButton(); |
37 |
this.FileLoader = new System.Windows.Forms.OpenFileDialog(); |
38 |
this.FileSaver = new System.Windows.Forms.SaveFileDialog(); |
39 |
this.toolStrip1.SuspendLayout(); |
40 |
this.SuspendLayout(); |
41 |
// |
42 |
// txtEditor |
43 |
// |
44 |
this.txtEditor.Dock = System.Windows.Forms.DockStyle.Fill; |
45 |
this.txtEditor.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
46 |
this.txtEditor.Location = new System.Drawing.Point(0, 25); |
47 |
this.txtEditor.Name = "txtEditor"; |
48 |
this.txtEditor.Size = new System.Drawing.Size(913, 521); |
49 |
this.txtEditor.TabIndex = 0; |
50 |
this.txtEditor.Text = ""; |
51 |
this.txtEditor.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.txtEditor_LinkClicked); |
52 |
this.txtEditor.TextChanged += new System.EventHandler(this.txtEditor_TextChanged); |
53 |
// |
54 |
// toolStrip1 |
55 |
// |
56 |
this.toolStrip1.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
57 |
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { |
58 |
this.mnuItemOpen, |
59 |
this.mnuItemSave, |
60 |
this.mnuItemClose}); |
61 |
this.toolStrip1.Location = new System.Drawing.Point(0, 0); |
62 |
this.toolStrip1.Name = "toolStrip1"; |
63 |
this.toolStrip1.Size = new System.Drawing.Size(913, 25); |
64 |
this.toolStrip1.TabIndex = 1; |
65 |
this.toolStrip1.Text = "toolStrip1"; |
66 |
// |
67 |
// mnuItemOpen |
68 |
// |
69 |
this.mnuItemOpen.Image = ((System.Drawing.Image)(resources.GetObject("mnuItemOpen.Image"))); |
70 |
this.mnuItemOpen.ImageTransparentColor = System.Drawing.Color.Magenta; |
71 |
this.mnuItemOpen.Name = "mnuItemOpen"; |
72 |
this.mnuItemOpen.Size = new System.Drawing.Size(68, 22); |
73 |
this.mnuItemOpen.Text = "&Open"; |
74 |
this.mnuItemOpen.Click += new System.EventHandler(this.mnuItemOpen_Click); |
75 |
// |
76 |
// mnuItemSave |
77 |
// |
78 |
this.mnuItemSave.Image = ((System.Drawing.Image)(resources.GetObject("mnuItemSave.Image"))); |
79 |
this.mnuItemSave.ImageTransparentColor = System.Drawing.Color.Magenta; |
80 |
this.mnuItemSave.Name = "mnuItemSave"; |
81 |
this.mnuItemSave.Size = new System.Drawing.Size(68, 22); |
82 |
this.mnuItemSave.Text = "&Save"; |
83 |
this.mnuItemSave.Click += new System.EventHandler(this.mnuItemSave_Click); |
84 |
// |
85 |
// mnuItemClose |
86 |
// |
87 |
this.mnuItemClose.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
88 |
this.mnuItemClose.Image = ((System.Drawing.Image)(resources.GetObject("mnuItemClose.Image"))); |
89 |
this.mnuItemClose.ImageTransparentColor = System.Drawing.Color.Magenta; |
90 |
this.mnuItemClose.Name = "mnuItemClose"; |
91 |
this.mnuItemClose.Size = new System.Drawing.Size(78, 22); |
92 |
this.mnuItemClose.Text = "&Close"; |
93 |
this.mnuItemClose.Click += new System.EventHandler(this.mnuItemClose_Click); |
94 |
// |
95 |
// FileLoader |
96 |
// |
97 |
this.FileLoader.Filter = "All files|*.*"; |
98 |
this.FileLoader.SupportMultiDottedExtensions = true; |
99 |
this.FileLoader.Title = "Please choose the file to open"; |
100 |
// |
101 |
// FileSaver |
102 |
// |
103 |
this.FileSaver.Filter = "All files|*.*"; |
104 |
this.FileSaver.SupportMultiDottedExtensions = true; |
105 |
this.FileSaver.Title = "Please choose the file to save"; |
106 |
// |
107 |
// ScratchPadDocument |
108 |
// |
109 |
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 18F); |
110 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
111 |
this.Controls.Add(this.txtEditor); |
112 |
this.Controls.Add(this.toolStrip1); |
113 |
this.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
114 |
this.Name = "ScratchPadDocument"; |
115 |
this.Size = new System.Drawing.Size(913, 546); |
116 |
this.Load += new System.EventHandler(this.ScratchPadDocument_Load); |
117 |
this.toolStrip1.ResumeLayout(false); |
118 |
this.toolStrip1.PerformLayout(); |
119 |
this.ResumeLayout(false); |
120 |
this.PerformLayout(); |
121 |
|
122 |
} |
123 |
|
124 |
#endregion |
125 |
|
126 |
private System.Windows.Forms.RichTextBox txtEditor; |
127 |
private System.Windows.Forms.ToolStrip toolStrip1; |
128 |
private System.Windows.Forms.ToolStripButton mnuItemOpen; |
129 |
private System.Windows.Forms.ToolStripButton mnuItemSave; |
130 |
private System.Windows.Forms.ToolStripButton mnuItemClose; |
131 |
private System.Windows.Forms.OpenFileDialog FileLoader; |
132 |
private System.Windows.Forms.SaveFileDialog FileSaver; |
133 |
} |
134 |
} |