--- trunk/RomCheater.RVACalculator/RVACalculatorDockControl.Designer.cs 2013/06/17 12:40:47 699 +++ trunk/RomCheater.RVACalculator/RVACalculatorDockControl.Designer.cs 2013/06/17 13:09:29 700 @@ -40,12 +40,12 @@ this.btnSave = new System.Windows.Forms.Button(); this.btnLoad = new System.Windows.Forms.Button(); this.btnRefresh = new System.Windows.Forms.Button(); + this.btnCopyAll = 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(); @@ -206,6 +206,20 @@ this.btnRefresh.UseVisualStyleBackColor = true; this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click); // + // 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); + // // lblRVA // this.lblRVA.AutoSize = true; @@ -216,6 +230,23 @@ 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(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)); + this.txtRVA.ValueChanged += new System.EventHandler<System.Windows.Forms.ValueChangedEventArgs>(this.txtRVA_ValueChanged); + // // splitContainer1 // this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; @@ -247,37 +278,6 @@ 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)); - this.txtRVA.ValueChanged += new System.EventHandler<System.Windows.Forms.ValueChangedEventArgs>(this.txtRVA_ValueChanged); - // - // 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); |