mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-16 20:17:30 +08:00
123 lines
5.4 KiB
C#
123 lines
5.4 KiB
C#
namespace CodeWalker.Forms
|
|
{
|
|
partial class HexForm
|
|
{
|
|
/// <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(HexForm));
|
|
this.LineSizeDropDown = new System.Windows.Forms.ComboBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|
this.StatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.HexTextBox = new CodeWalker.WinForms.TextBoxFix();
|
|
this.statusStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// LineSizeDropDown
|
|
//
|
|
this.LineSizeDropDown.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.LineSizeDropDown.FormattingEnabled = true;
|
|
this.LineSizeDropDown.Items.AddRange(new object[] {
|
|
"8",
|
|
"16",
|
|
"32",
|
|
"Text"});
|
|
this.LineSizeDropDown.Location = new System.Drawing.Point(79, 7);
|
|
this.LineSizeDropDown.Name = "LineSizeDropDown";
|
|
this.LineSizeDropDown.Size = new System.Drawing.Size(49, 21);
|
|
this.LineSizeDropDown.TabIndex = 102;
|
|
this.LineSizeDropDown.SelectedIndexChanged += new System.EventHandler(this.LineSizeDropDown_SelectedIndexChanged);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(22, 10);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(51, 13);
|
|
this.label1.TabIndex = 103;
|
|
this.label1.Text = "Line size:";
|
|
//
|
|
// statusStrip1
|
|
//
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.StatusLabel});
|
|
this.statusStrip1.Location = new System.Drawing.Point(0, 488);
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
this.statusStrip1.Size = new System.Drawing.Size(748, 22);
|
|
this.statusStrip1.TabIndex = 104;
|
|
this.statusStrip1.Text = "statusStrip1";
|
|
//
|
|
// StatusLabel
|
|
//
|
|
this.StatusLabel.Name = "StatusLabel";
|
|
this.StatusLabel.Size = new System.Drawing.Size(733, 17);
|
|
this.StatusLabel.Spring = true;
|
|
this.StatusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
//
|
|
// HexTextBox
|
|
//
|
|
this.HexTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.HexTextBox.Font = new System.Drawing.Font("Courier New", 8.25F);
|
|
this.HexTextBox.HideSelection = false;
|
|
this.HexTextBox.Location = new System.Drawing.Point(0, 34);
|
|
this.HexTextBox.Multiline = true;
|
|
this.HexTextBox.Name = "HexTextBox";
|
|
this.HexTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
|
|
this.HexTextBox.Size = new System.Drawing.Size(748, 451);
|
|
this.HexTextBox.TabIndex = 105;
|
|
this.HexTextBox.WordWrap = false;
|
|
//
|
|
// HexForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(748, 510);
|
|
this.Controls.Add(this.HexTextBox);
|
|
this.Controls.Add(this.statusStrip1);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.LineSizeDropDown);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "HexForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Hex Viewer - CodeWalker by dexyfex";
|
|
this.statusStrip1.ResumeLayout(false);
|
|
this.statusStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.ComboBox LineSizeDropDown;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|
private System.Windows.Forms.ToolStripStatusLabel StatusLabel;
|
|
private WinForms.TextBoxFix HexTextBox;
|
|
}
|
|
} |