namespace HexToFileConverter { partial class frmMain { private System.ComponentModel.IContainer components = null; 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() { this.txtHexCode = new System.Windows.Forms.TextBox(); this.btnWriteToFile = new System.Windows.Forms.Button(); this.lblHexCode = new System.Windows.Forms.Label(); this.cmbFileType = new System.Windows.Forms.ComboBox(); this.SuspendLayout(); // // txtHexCode // this.txtHexCode.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtHexCode.Location = new System.Drawing.Point(12, 38); this.txtHexCode.Multiline = true; this.txtHexCode.Name = "txtHexCode"; this.txtHexCode.Size = new System.Drawing.Size(776, 356); this.txtHexCode.TabIndex = 0; this.txtHexCode.MaxLength = 0; this.txtHexCode.TextChanged += new System.EventHandler(this.textBox1_TextChanged); // // btnWriteToFile // this.btnWriteToFile.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnWriteToFile.Location = new System.Drawing.Point(159, 400); this.btnWriteToFile.Name = "btnWriteToFile"; this.btnWriteToFile.Size = new System.Drawing.Size(138, 39); this.btnWriteToFile.TabIndex = 1; this.btnWriteToFile.Text = "Write to File"; this.btnWriteToFile.UseVisualStyleBackColor = true; this.btnWriteToFile.Click += new System.EventHandler(this.btnWriteToFile_Click); // // lblHexCode // this.lblHexCode.AutoSize = true; this.lblHexCode.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblHexCode.Location = new System.Drawing.Point(9, 9); this.lblHexCode.Name = "lblHexCode"; this.lblHexCode.Size = new System.Drawing.Size(106, 25); this.lblHexCode.TabIndex = 2; this.lblHexCode.Text = "Hex Code:"; // // cmbFileType // this.cmbFileType.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.cmbFileType.FormattingEnabled = true; this.cmbFileType.Items.AddRange(new object[] { "Document", "Message", "PDF", "Image"}); this.cmbFileType.Location = new System.Drawing.Point(12, 405); this.cmbFileType.Name = "cmbFileType"; this.cmbFileType.Size = new System.Drawing.Size(141, 30); this.cmbFileType.TabIndex = 3; this.cmbFileType.Text = "File Type..."; // // frmMain // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 450); this.Controls.Add(this.cmbFileType); this.Controls.Add(this.lblHexCode); this.Controls.Add(this.btnWriteToFile); this.Controls.Add(this.txtHexCode); this.Name = "frmMain"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Hex to File Converter"; this.Load += new System.EventHandler(this.frmMain_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox txtHexCode; private System.Windows.Forms.Button btnWriteToFile; private System.Windows.Forms.Label lblHexCode; private System.Windows.Forms.ComboBox cmbFileType; } }