TinkeDSi/Tinke/VisorHexBasic.Designer.cs
Benito Palacios Sánchez 23b0246e60 Improve basic HexViewer
2016-03-25 18:31:47 +01:00

80 lines
3.2 KiB
C#

namespace Tinke
{
partial class VisorHexBasic
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(VisorHex));
this.txtHex = new System.Windows.Forms.TextBox();
this.vScrollBar1 = new System.Windows.Forms.VScrollBar();
this.SuspendLayout();
//
// txtHex
//
this.txtHex.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.txtHex.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtHex.Font = new System.Drawing.Font("Consolas", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtHex.Location = new System.Drawing.Point(0, 0);
this.txtHex.Multiline = true;
this.txtHex.Name = "txtHex";
this.txtHex.Size = new System.Drawing.Size(795, 272);
this.txtHex.TabIndex = 2;
//
// vScrollBar1
//
this.vScrollBar1.Dock = System.Windows.Forms.DockStyle.Right;
this.vScrollBar1.Location = new System.Drawing.Point(790, 0);
this.vScrollBar1.Name = "vScrollBar1";
this.vScrollBar1.Size = new System.Drawing.Size(19, 272);
this.vScrollBar1.TabIndex = 3;
this.vScrollBar1.Scroll += new System.Windows.Forms.ScrollEventHandler(this.vScrollBar1_Scroll);
//
// VisorHex
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(809, 275);
this.Controls.Add(this.vScrollBar1);
this.Controls.Add(this.txtHex);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(825, 38);
this.Name = "VisorHex";
this.Text = "S41";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtHex;
private System.Windows.Forms.VScrollBar vScrollBar1;
}
}