/* * Copyright 2018 faddenSoft * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ namespace SourceGen.AppForms { partial class EditAddress { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.Windows.Forms.Label addressLabel; this.okButton = new System.Windows.Forms.Button(); this.cancelButton = new System.Windows.Forms.Button(); this.textBox1 = new System.Windows.Forms.TextBox(); this.instructionLabel1 = new System.Windows.Forms.Label(); this.instructionLabel2 = new System.Windows.Forms.Label(); addressLabel = new System.Windows.Forms.Label(); this.SuspendLayout(); // // addressLabel // addressLabel.AutoSize = true; addressLabel.Location = new System.Drawing.Point(12, 16); addressLabel.Name = "addressLabel"; addressLabel.Size = new System.Drawing.Size(48, 13); addressLabel.TabIndex = 1; addressLabel.Text = "Address:"; // // okButton // this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.okButton.Location = new System.Drawing.Point(190, 91); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(75, 23); this.okButton.TabIndex = 3; this.okButton.Text = "OK"; this.okButton.UseVisualStyleBackColor = true; this.okButton.Click += new System.EventHandler(this.okButton_Click); // // cancelButton // this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelButton.Location = new System.Drawing.Point(271, 91); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 4; this.cancelButton.Text = "Cancel"; this.cancelButton.UseVisualStyleBackColor = true; // // textBox1 // this.textBox1.Location = new System.Drawing.Point(68, 13); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(275, 20); this.textBox1.TabIndex = 0; // // instructionLabel1 // this.instructionLabel1.AutoSize = true; this.instructionLabel1.Location = new System.Drawing.Point(12, 36); this.instructionLabel1.Name = "instructionLabel1"; this.instructionLabel1.Size = new System.Drawing.Size(331, 13); this.instructionLabel1.TabIndex = 2; this.instructionLabel1.Text = "Enter 16-bit or 24-bit address in hexadecimal, e.g. $1000 or 00/be00.\r\n"; // // instructionLabel2 // this.instructionLabel2.AutoSize = true; this.instructionLabel2.Location = new System.Drawing.Point(12, 58); this.instructionLabel2.Name = "instructionLabel2"; this.instructionLabel2.Size = new System.Drawing.Size(258, 13); this.instructionLabel2.TabIndex = 5; this.instructionLabel2.Text = "Leave the field blank to remove the address override."; // // EditAddress // this.AcceptButton = this.okButton; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.cancelButton; this.ClientSize = new System.Drawing.Size(358, 126); this.Controls.Add(this.instructionLabel2); this.Controls.Add(this.instructionLabel1); this.Controls.Add(this.textBox1); this.Controls.Add(addressLabel); this.Controls.Add(this.cancelButton); this.Controls.Add(this.okButton); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "EditAddress"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Edit Address"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button okButton; private System.Windows.Forms.Button cancelButton; private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.Label instructionLabel1; private System.Windows.Forms.Label instructionLabel2; } }