2012-11-05 03:32:18 +00:00
|
|
|
|
namespace NBTExplorer.Windows
|
2012-03-13 05:19:48 +00:00
|
|
|
|
{
|
|
|
|
|
partial class HexEditor
|
|
|
|
|
{
|
|
|
|
|
/// <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 ()
|
|
|
|
|
{
|
|
|
|
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|
|
|
|
this._curPositionLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
2013-02-06 04:35:01 +00:00
|
|
|
|
this._curElementLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
|
|
|
|
this._space = new System.Windows.Forms.ToolStripStatusLabel();
|
|
|
|
|
this._insertStateLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
2013-05-25 07:30:52 +00:00
|
|
|
|
this._buttonCancel = new System.Windows.Forms.Button();
|
|
|
|
|
this._buttonOK = new System.Windows.Forms.Button();
|
|
|
|
|
this.hexBox1 = new Be.Windows.Forms.HexBox();
|
|
|
|
|
this._buttonImport = new System.Windows.Forms.Button();
|
|
|
|
|
this._buttonExport = new System.Windows.Forms.Button();
|
2012-03-13 05:19:48 +00:00
|
|
|
|
this.statusStrip1.SuspendLayout();
|
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// statusStrip1
|
|
|
|
|
//
|
|
|
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
2012-08-26 21:33:54 +00:00
|
|
|
|
this._curPositionLabel,
|
2013-02-06 04:35:01 +00:00
|
|
|
|
this._curElementLabel,
|
|
|
|
|
this._space,
|
|
|
|
|
this._insertStateLabel});
|
2012-03-13 05:19:48 +00:00
|
|
|
|
this.statusStrip1.Location = new System.Drawing.Point(0, 333);
|
|
|
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
|
|
|
this.statusStrip1.Size = new System.Drawing.Size(516, 22);
|
|
|
|
|
this.statusStrip1.TabIndex = 1;
|
|
|
|
|
this.statusStrip1.Text = "statusStrip1";
|
|
|
|
|
//
|
|
|
|
|
// _curPositionLabel
|
|
|
|
|
//
|
|
|
|
|
this._curPositionLabel.AutoSize = false;
|
|
|
|
|
this._curPositionLabel.Name = "_curPositionLabel";
|
|
|
|
|
this._curPositionLabel.Size = new System.Drawing.Size(100, 17);
|
|
|
|
|
this._curPositionLabel.Text = "0000";
|
|
|
|
|
//
|
2013-02-06 04:35:01 +00:00
|
|
|
|
// _curElementLabel
|
|
|
|
|
//
|
|
|
|
|
this._curElementLabel.Name = "_curElementLabel";
|
|
|
|
|
this._curElementLabel.Size = new System.Drawing.Size(59, 17);
|
|
|
|
|
this._curElementLabel.Text = "Element 0";
|
|
|
|
|
this._curElementLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
|
|
|
//
|
2013-05-25 07:30:52 +00:00
|
|
|
|
// _space
|
|
|
|
|
//
|
|
|
|
|
this._space.Name = "_space";
|
|
|
|
|
this._space.Size = new System.Drawing.Size(284, 17);
|
|
|
|
|
this._space.Spring = true;
|
|
|
|
|
//
|
|
|
|
|
// _insertStateLabel
|
|
|
|
|
//
|
|
|
|
|
this._insertStateLabel.Name = "_insertStateLabel";
|
|
|
|
|
this._insertStateLabel.Size = new System.Drawing.Size(58, 17);
|
|
|
|
|
this._insertStateLabel.Text = "Overwrite";
|
|
|
|
|
//
|
2012-08-24 03:58:11 +00:00
|
|
|
|
// _buttonCancel
|
2012-03-13 05:19:48 +00:00
|
|
|
|
//
|
2012-08-24 03:58:11 +00:00
|
|
|
|
this._buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this._buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
|
|
|
this._buttonCancel.Location = new System.Drawing.Point(348, 307);
|
|
|
|
|
this._buttonCancel.Name = "_buttonCancel";
|
|
|
|
|
this._buttonCancel.Size = new System.Drawing.Size(75, 23);
|
|
|
|
|
this._buttonCancel.TabIndex = 13;
|
|
|
|
|
this._buttonCancel.Text = "Cancel";
|
|
|
|
|
this._buttonCancel.UseVisualStyleBackColor = true;
|
|
|
|
|
//
|
|
|
|
|
// _buttonOK
|
|
|
|
|
//
|
|
|
|
|
this._buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this._buttonOK.Location = new System.Drawing.Point(429, 307);
|
|
|
|
|
this._buttonOK.Name = "_buttonOK";
|
|
|
|
|
this._buttonOK.Size = new System.Drawing.Size(75, 23);
|
|
|
|
|
this._buttonOK.TabIndex = 12;
|
|
|
|
|
this._buttonOK.Text = "OK";
|
|
|
|
|
this._buttonOK.UseVisualStyleBackColor = true;
|
|
|
|
|
this._buttonOK.Click += new System.EventHandler(this._buttonOK_Click);
|
2012-03-13 05:19:48 +00:00
|
|
|
|
//
|
2013-05-25 07:30:52 +00:00
|
|
|
|
// hexBox1
|
2012-08-26 21:33:54 +00:00
|
|
|
|
//
|
2013-05-25 07:30:52 +00:00
|
|
|
|
this.hexBox1.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.hexBox1.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
|
|
|
this.hexBox1.LineInfoForeColor = System.Drawing.Color.Empty;
|
|
|
|
|
this.hexBox1.LineInfoVisible = true;
|
|
|
|
|
this.hexBox1.Location = new System.Drawing.Point(12, 12);
|
|
|
|
|
this.hexBox1.Name = "hexBox1";
|
|
|
|
|
this.hexBox1.ReadOnly = true;
|
|
|
|
|
this.hexBox1.ShadowSelectionColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(60)))), ((int)(((byte)(188)))), ((int)(((byte)(255)))));
|
|
|
|
|
this.hexBox1.Size = new System.Drawing.Size(492, 289);
|
|
|
|
|
this.hexBox1.TabIndex = 0;
|
|
|
|
|
this.hexBox1.VScrollBarVisible = true;
|
2013-02-06 04:35:01 +00:00
|
|
|
|
//
|
2013-05-25 07:30:52 +00:00
|
|
|
|
// _buttonImport
|
2013-02-06 04:35:01 +00:00
|
|
|
|
//
|
2013-05-25 07:30:52 +00:00
|
|
|
|
this._buttonImport.Location = new System.Drawing.Point(12, 307);
|
|
|
|
|
this._buttonImport.Name = "_buttonImport";
|
|
|
|
|
this._buttonImport.Size = new System.Drawing.Size(75, 23);
|
|
|
|
|
this._buttonImport.TabIndex = 14;
|
|
|
|
|
this._buttonImport.Text = "Import";
|
|
|
|
|
this._buttonImport.UseVisualStyleBackColor = true;
|
|
|
|
|
this._buttonImport.Click += new System.EventHandler(this._buttonImport_Click);
|
|
|
|
|
//
|
|
|
|
|
// _buttonExport
|
|
|
|
|
//
|
|
|
|
|
this._buttonExport.Location = new System.Drawing.Point(93, 307);
|
|
|
|
|
this._buttonExport.Name = "_buttonExport";
|
|
|
|
|
this._buttonExport.Size = new System.Drawing.Size(75, 23);
|
|
|
|
|
this._buttonExport.TabIndex = 15;
|
|
|
|
|
this._buttonExport.Text = "Export";
|
|
|
|
|
this._buttonExport.UseVisualStyleBackColor = true;
|
|
|
|
|
this._buttonExport.Click += new System.EventHandler(this._buttonExport_Click);
|
2012-08-26 21:33:54 +00:00
|
|
|
|
//
|
2012-03-13 05:19:48 +00:00
|
|
|
|
// HexEditor
|
|
|
|
|
//
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
2012-08-24 03:58:11 +00:00
|
|
|
|
this.CancelButton = this._buttonCancel;
|
2012-03-13 05:19:48 +00:00
|
|
|
|
this.ClientSize = new System.Drawing.Size(516, 355);
|
2013-05-25 07:30:52 +00:00
|
|
|
|
this.Controls.Add(this._buttonExport);
|
|
|
|
|
this.Controls.Add(this._buttonImport);
|
2012-08-24 03:58:11 +00:00
|
|
|
|
this.Controls.Add(this._buttonCancel);
|
|
|
|
|
this.Controls.Add(this._buttonOK);
|
2012-03-13 05:19:48 +00:00
|
|
|
|
this.Controls.Add(this.statusStrip1);
|
|
|
|
|
this.Controls.Add(this.hexBox1);
|
|
|
|
|
this.Name = "HexEditor";
|
|
|
|
|
this.Text = "HexEditor";
|
|
|
|
|
this.statusStrip1.ResumeLayout(false);
|
|
|
|
|
this.statusStrip1.PerformLayout();
|
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
this.PerformLayout();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private Be.Windows.Forms.HexBox hexBox1;
|
|
|
|
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|
|
|
|
private System.Windows.Forms.ToolStripStatusLabel _curPositionLabel;
|
2012-08-24 03:58:11 +00:00
|
|
|
|
private System.Windows.Forms.Button _buttonCancel;
|
|
|
|
|
private System.Windows.Forms.Button _buttonOK;
|
2012-08-26 21:33:54 +00:00
|
|
|
|
private System.Windows.Forms.ToolStripStatusLabel _curElementLabel;
|
2013-02-06 04:35:01 +00:00
|
|
|
|
private System.Windows.Forms.ToolStripStatusLabel _space;
|
|
|
|
|
private System.Windows.Forms.ToolStripStatusLabel _insertStateLabel;
|
2013-05-25 07:30:52 +00:00
|
|
|
|
private System.Windows.Forms.Button _buttonImport;
|
|
|
|
|
private System.Windows.Forms.Button _buttonExport;
|
2012-03-13 05:19:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|