--- trunk/RomCheater/Docking/UI/UIMemoryViewer.Designer.cs 2014/04/07 12:55:47 807 +++ trunk/RomCheater/Docking/UI/UIMemoryViewer.Designer.cs 2014/04/07 14:02:32 808 @@ -35,14 +35,14 @@ this.btnGotoAddress = new System.Windows.Forms.Button(); this.btnEditBytes = new System.Windows.Forms.Button(); this.left_pnl = new System.Windows.Forms.Panel(); + this.txtAddresses = new Utilities.TransparentControls.FlickerFreeTextControl(); this.ramScroll = new System.Windows.Forms.VScrollBar(); this.update_timer = new System.Windows.Forms.Timer(this.components); this.ResultsUpdateWorkerThread = new System.ComponentModel.BackgroundWorker(); this.panel1 = new System.Windows.Forms.Panel(); + this.txthexGoto = new System.Windows.Forms.MaskedHexBox(); this.btnGotoImageBase = new System.Windows.Forms.Button(); this.txtData = new Be.Windows.Forms.HexBox(); - this.txthexGoto = new System.Windows.Forms.MaskedHexBox(); - this.txtAddresses = new Utilities.TransparentControls.FlickerFreeRichTextBox(); this.spacer.SuspendLayout(); this.toolStrip2.SuspendLayout(); this.left_pnl.SuspendLayout(); @@ -119,6 +119,19 @@ this.left_pnl.Size = new System.Drawing.Size(225, 674); this.left_pnl.TabIndex = 14; // + // txtAddresses + // + this.txtAddresses.BackColor = System.Drawing.Color.White; + this.txtAddresses.Dock = System.Windows.Forms.DockStyle.Fill; + this.txtAddresses.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txtAddresses.Location = new System.Drawing.Point(0, 24); + this.txtAddresses.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.txtAddresses.Name = "txtAddresses"; + this.txtAddresses.Size = new System.Drawing.Size(221, 646); + this.txtAddresses.TabIndex = 1; + this.txtAddresses.Text = ""; + this.txtAddresses.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtAddresses_KeyDown); + // // ramScroll // this.ramScroll.Dock = System.Windows.Forms.DockStyle.Right; @@ -153,6 +166,24 @@ this.panel1.Size = new System.Drawing.Size(797, 35); this.panel1.TabIndex = 18; // + // txthexGoto + // + this.txthexGoto.AutoSize = true; + this.txthexGoto.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.txthexGoto.Dock = System.Windows.Forms.DockStyle.Left; + this.txthexGoto.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txthexGoto.isAddressMask = true; + this.txthexGoto.Location = new System.Drawing.Point(0, 0); + this.txthexGoto.Margin = new System.Windows.Forms.Padding(0); + this.txthexGoto.MaxLength = 8; + this.txthexGoto.Name = "txthexGoto"; + this.txthexGoto.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0); + this.txthexGoto.ReadOnly = false; + this.txthexGoto.Size = new System.Drawing.Size(298, 31); + this.txthexGoto.TabIndex = 17; + this.txthexGoto.TextLength = 16; + this.txthexGoto.Value = ((ulong)(0ul)); + // // btnGotoImageBase // this.btnGotoImageBase.AutoSize = true; @@ -184,39 +215,6 @@ this.txtData.UseFixedBytesPerLine = true; this.txtData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtData_KeyDown); // - // txthexGoto - // - this.txthexGoto.AutoSize = true; - this.txthexGoto.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.txthexGoto.Dock = System.Windows.Forms.DockStyle.Left; - this.txthexGoto.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.txthexGoto.isAddressMask = true; - this.txthexGoto.Location = new System.Drawing.Point(0, 0); - this.txthexGoto.Margin = new System.Windows.Forms.Padding(0); - this.txthexGoto.MaxLength = 8; - this.txthexGoto.Name = "txthexGoto"; - this.txthexGoto.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0); - this.txthexGoto.ReadOnly = false; - this.txthexGoto.Size = new System.Drawing.Size(298, 31); - this.txthexGoto.TabIndex = 17; - this.txthexGoto.TextLength = 16; - this.txthexGoto.Value = ((ulong)(0ul)); - // - // txtAddresses - // - this.txtAddresses.BackColor = System.Drawing.Color.White; - this.txtAddresses.Dock = System.Windows.Forms.DockStyle.Fill; - this.txtAddresses.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.txtAddresses.Location = new System.Drawing.Point(0, 24); - this.txtAddresses.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); - this.txtAddresses.Name = "txtAddresses"; - this.txtAddresses.ReadOnly = true; - this.txtAddresses.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None; - this.txtAddresses.Size = new System.Drawing.Size(221, 646); - this.txtAddresses.TabIndex = 1; - this.txtAddresses.Text = ""; - this.txtAddresses.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtAddresses_KeyDown); - // // UIMemoryViewer // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); @@ -249,7 +247,7 @@ private System.Windows.Forms.Button btnGotoAddress; private System.Windows.Forms.Button btnEditBytes; private System.Windows.Forms.Panel left_pnl; - private Utilities.TransparentControls.FlickerFreeRichTextBox txtAddresses; + private Utilities.TransparentControls.FlickerFreeTextControl txtAddresses; private System.Windows.Forms.VScrollBar ramScroll; private System.Windows.Forms.Timer update_timer; private System.ComponentModel.BackgroundWorker ResultsUpdateWorkerThread; |