--- trunk/RomCheater.RVACalculator/RVACalculatorDockControl.Designer.cs 2013/06/17 04:49:09 668 +++ trunk/RomCheater.RVACalculator/RVACalculatorDockControl.Designer.cs 2013/06/17 05:11:25 669 @@ -41,10 +41,11 @@ this.btnLoad = new System.Windows.Forms.Button(); this.btnRefresh = new System.Windows.Forms.Button(); this.lblRVA = new System.Windows.Forms.Label(); - this.txtRVA = new System.Windows.Forms.MaskedHexBox(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.CheatLoader = new System.Windows.Forms.OpenFileDialog(); this.CheatSaver = new System.Windows.Forms.SaveFileDialog(); + this.txtRVA = new System.Windows.Forms.MaskedHexBox(); + this.btnCopyAll = new System.Windows.Forms.Button(); this.pnl_bottom_flow.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); @@ -96,6 +97,7 @@ this.pnl_bottom_flow.Controls.Add(this.btnSave); this.pnl_bottom_flow.Controls.Add(this.btnLoad); this.pnl_bottom_flow.Controls.Add(this.btnRefresh); + this.pnl_bottom_flow.Controls.Add(this.btnCopyAll); this.pnl_bottom_flow.Controls.Add(this.lblRVA); this.pnl_bottom_flow.Controls.Add(this.txtRVA); this.pnl_bottom_flow.Dock = System.Windows.Forms.DockStyle.Fill; @@ -208,28 +210,12 @@ // this.lblRVA.AutoSize = true; this.lblRVA.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lblRVA.Location = new System.Drawing.Point(3, 40); + this.lblRVA.Location = new System.Drawing.Point(154, 40); this.lblRVA.Name = "lblRVA"; this.lblRVA.Size = new System.Drawing.Size(77, 30); this.lblRVA.TabIndex = 11; this.lblRVA.Text = "RVA:"; // - // txtRVA - // - this.txtRVA.AutoSize = true; - this.txtRVA.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.txtRVA.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.txtRVA.isAddressMask = true; - this.txtRVA.Location = new System.Drawing.Point(83, 40); - this.txtRVA.Margin = new System.Windows.Forms.Padding(0); - this.txtRVA.MaxLength = 8; - this.txtRVA.Name = "txtRVA"; - this.txtRVA.ReadOnly = false; - this.txtRVA.Size = new System.Drawing.Size(193, 29); - this.txtRVA.TabIndex = 12; - this.txtRVA.TextLength = 8; - this.txtRVA.Value = ((ulong)(0ul)); - // // splitContainer1 // this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; @@ -261,6 +247,36 @@ this.CheatSaver.Filter = "Cheat Files|*.cheat|All Files|*.*"; this.CheatSaver.Title = "Please choose the cheat file to save"; // + // txtRVA + // + this.txtRVA.AutoSize = true; + this.txtRVA.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.txtRVA.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txtRVA.isAddressMask = true; + this.txtRVA.Location = new System.Drawing.Point(234, 40); + this.txtRVA.Margin = new System.Windows.Forms.Padding(0); + this.txtRVA.MaxLength = 8; + this.txtRVA.Name = "txtRVA"; + this.txtRVA.ReadOnly = false; + this.txtRVA.Size = new System.Drawing.Size(193, 29); + this.txtRVA.TabIndex = 12; + this.txtRVA.TextLength = 8; + this.txtRVA.Value = ((ulong)(0ul)); + // + // btnCopyAll + // + this.btnCopyAll.AutoSize = true; + this.btnCopyAll.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.btnCopyAll.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnCopyAll.Location = new System.Drawing.Point(0, 40); + this.btnCopyAll.Margin = new System.Windows.Forms.Padding(0); + this.btnCopyAll.Name = "btnCopyAll"; + this.btnCopyAll.Size = new System.Drawing.Size(151, 40); + this.btnCopyAll.TabIndex = 13; + this.btnCopyAll.Text = "Copy All"; + this.btnCopyAll.UseVisualStyleBackColor = true; + this.btnCopyAll.Click += new System.EventHandler(this.btnCopyAll_Click); + // // RVACalculatorDockControl // this.AutoScaleDimensions = new System.Drawing.SizeF(16F, 30F); @@ -301,5 +317,6 @@ private System.Windows.Forms.MaskedHexBox txtRVA; private System.Windows.Forms.OpenFileDialog CheatLoader; private System.Windows.Forms.SaveFileDialog CheatSaver; + private System.Windows.Forms.Button btnCopyAll; } } \ No newline at end of file |