ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Docking/UI/ByteEditor.Designer.cs
Revision: 808
Committed: Mon Apr 7 14:02:32 2014 UTC (9 years, 1 month ago) by william
File size: 9694 byte(s)
Log Message:
+ update FlickerFreeTextControl (was FlickerFreeRichTextBox) -- now it's a usercontrol with completely custom painting

File Contents

# Content
1 namespace RomCheater.Docking.UI
2 {
3 partial class ByteEditor
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(ByteEditor));
32 this.spacer = new System.Windows.Forms.Panel();
33 this.toolStrip2 = new System.Windows.Forms.ToolStrip();
34 this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
35 this.txtData = new Be.Windows.Forms.HexBox();
36 this.btnSave = new System.Windows.Forms.ToolStripButton();
37 this.toolStrip1 = new System.Windows.Forms.ToolStrip();
38 this.lblAddressMarker = new System.Windows.Forms.ToolStripLabel();
39 this.btnCancel = new System.Windows.Forms.ToolStripButton();
40 this.txtAddresses = new Utilities.TransparentControls.FlickerFreeTextControl();
41 this.left_pnl = new System.Windows.Forms.Panel();
42 this.spacer.SuspendLayout();
43 this.toolStrip2.SuspendLayout();
44 this.toolStrip1.SuspendLayout();
45 this.left_pnl.SuspendLayout();
46 this.SuspendLayout();
47 //
48 // spacer
49 //
50 this.spacer.Controls.Add(this.toolStrip2);
51 this.spacer.Dock = System.Windows.Forms.DockStyle.Top;
52 this.spacer.Location = new System.Drawing.Point(0, 0);
53 this.spacer.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
54 this.spacer.Name = "spacer";
55 this.spacer.Size = new System.Drawing.Size(177, 31);
56 this.spacer.TabIndex = 9;
57 //
58 // toolStrip2
59 //
60 this.toolStrip2.Font = new System.Drawing.Font("Lucida Console", 12F);
61 this.toolStrip2.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
62 this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
63 this.toolStripLabel1});
64 this.toolStrip2.Location = new System.Drawing.Point(0, 0);
65 this.toolStrip2.Name = "toolStrip2";
66 this.toolStrip2.Padding = new System.Windows.Forms.Padding(0, 0, 2, 0);
67 this.toolStrip2.Size = new System.Drawing.Size(177, 25);
68 this.toolStrip2.TabIndex = 0;
69 this.toolStrip2.Text = "toolStrip2";
70 //
71 // toolStripLabel1
72 //
73 this.toolStripLabel1.Name = "toolStripLabel1";
74 this.toolStripLabel1.Size = new System.Drawing.Size(88, 22);
75 this.toolStripLabel1.Text = "Address:";
76 //
77 // txtData
78 //
79 this.txtData.Dock = System.Windows.Forms.DockStyle.Fill;
80 this.txtData.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
81 this.txtData.LineInfoForeColor = System.Drawing.Color.Empty;
82 this.txtData.Location = new System.Drawing.Point(177, 25);
83 this.txtData.Margin = new System.Windows.Forms.Padding(8, 5, 8, 5);
84 this.txtData.Name = "txtData";
85 this.txtData.ShadowSelectionColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(60)))), ((int)(((byte)(188)))), ((int)(((byte)(255)))));
86 this.txtData.Size = new System.Drawing.Size(693, 501);
87 this.txtData.TabIndex = 11;
88 this.txtData.UseFixedBytesPerLine = true;
89 //
90 // btnSave
91 //
92 this.btnSave.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
93 this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
94 this.btnSave.ImageTransparentColor = System.Drawing.Color.Magenta;
95 this.btnSave.Name = "btnSave";
96 this.btnSave.Size = new System.Drawing.Size(68, 22);
97 this.btnSave.Text = "Save";
98 this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
99 //
100 // toolStrip1
101 //
102 this.toolStrip1.Font = new System.Drawing.Font("Lucida Console", 12F);
103 this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
104 this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
105 this.lblAddressMarker,
106 this.btnCancel,
107 this.btnSave});
108 this.toolStrip1.Location = new System.Drawing.Point(177, 0);
109 this.toolStrip1.Name = "toolStrip1";
110 this.toolStrip1.Padding = new System.Windows.Forms.Padding(0, 0, 2, 0);
111 this.toolStrip1.Size = new System.Drawing.Size(693, 25);
112 this.toolStrip1.TabIndex = 12;
113 this.toolStrip1.Text = "toolStrip1";
114 //
115 // lblAddressMarker
116 //
117 this.lblAddressMarker.Name = "lblAddressMarker";
118 this.lblAddressMarker.Size = new System.Drawing.Size(138, 22);
119 this.lblAddressMarker.Text = "AddressMarker";
120 //
121 // btnCancel
122 //
123 this.btnCancel.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
124 this.btnCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnCancel.Image")));
125 this.btnCancel.ImageTransparentColor = System.Drawing.Color.Magenta;
126 this.btnCancel.Name = "btnCancel";
127 this.btnCancel.Size = new System.Drawing.Size(88, 22);
128 this.btnCancel.Text = "Cancel";
129 this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
130 //
131 // txtAddresses
132 //
133 this.txtAddresses.BackColor = System.Drawing.Color.White;
134 this.txtAddresses.Dock = System.Windows.Forms.DockStyle.Fill;
135 this.txtAddresses.Font = new System.Drawing.Font("Lucida Console", 12F);
136 this.txtAddresses.Location = new System.Drawing.Point(0, 31);
137 this.txtAddresses.Margin = new System.Windows.Forms.Padding(8, 5, 8, 5);
138 this.txtAddresses.Name = "txtAddresses";
139 this.txtAddresses.Size = new System.Drawing.Size(177, 495);
140 this.txtAddresses.TabIndex = 6;
141 this.txtAddresses.Text = "";
142 //
143 // left_pnl
144 //
145 this.left_pnl.Controls.Add(this.txtAddresses);
146 this.left_pnl.Controls.Add(this.spacer);
147 this.left_pnl.Dock = System.Windows.Forms.DockStyle.Left;
148 this.left_pnl.Location = new System.Drawing.Point(0, 0);
149 this.left_pnl.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
150 this.left_pnl.Name = "left_pnl";
151 this.left_pnl.Size = new System.Drawing.Size(177, 526);
152 this.left_pnl.TabIndex = 13;
153 //
154 // ByteEditor
155 //
156 this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 16F);
157 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
158 this.ClientSize = new System.Drawing.Size(870, 526);
159 this.Controls.Add(this.txtData);
160 this.Controls.Add(this.toolStrip1);
161 this.Controls.Add(this.left_pnl);
162 this.Font = new System.Drawing.Font("Lucida Console", 12F);
163 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
164 this.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
165 this.Name = "ByteEditor";
166 this.Text = "ByteEditor";
167 this.Load += new System.EventHandler(this.ByteEditor_Load);
168 this.spacer.ResumeLayout(false);
169 this.spacer.PerformLayout();
170 this.toolStrip2.ResumeLayout(false);
171 this.toolStrip2.PerformLayout();
172 this.toolStrip1.ResumeLayout(false);
173 this.toolStrip1.PerformLayout();
174 this.left_pnl.ResumeLayout(false);
175 this.ResumeLayout(false);
176 this.PerformLayout();
177
178 }
179
180 #endregion
181
182 private System.Windows.Forms.Panel spacer;
183 private System.Windows.Forms.ToolStrip toolStrip2;
184 private System.Windows.Forms.ToolStripLabel toolStripLabel1;
185 private Be.Windows.Forms.HexBox txtData;
186 private System.Windows.Forms.ToolStripButton btnSave;
187 private System.Windows.Forms.ToolStrip toolStrip1;
188 private System.Windows.Forms.ToolStripLabel lblAddressMarker;
189 private System.Windows.Forms.ToolStripButton btnCancel;
190 private Utilities.TransparentControls.FlickerFreeTextControl txtAddresses;
191 private System.Windows.Forms.Panel left_pnl;
192 }
193 }