mirror of
https://github.com/kwsch/NHSE.git
synced 2026-09-27 04:19:36 -05:00
Add generic RAM read/write form
accessible once a save is loaded, same as item injecting untested, but should be fine
This commit is contained in:
83
NHSE.WinForms/Subforms/SysBot/SimpleHexEditor.Designer.cs
generated
Normal file
83
NHSE.WinForms/Subforms/SysBot/SimpleHexEditor.Designer.cs
generated
Normal file
@@ -0,0 +1,83 @@
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace NHSE.WinForms
|
||||
{
|
||||
partial class SimpleHexEditor
|
||||
{
|
||||
/// <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.RTB_RAM = new System.Windows.Forms.RichTextBox();
|
||||
this.B_Update = new System.Windows.Forms.Button();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// RTB_RAM
|
||||
//
|
||||
this.RTB_RAM.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.RTB_RAM.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.RTB_RAM.Location = new System.Drawing.Point(9, 10);
|
||||
this.RTB_RAM.Name = "RTB_RAM";
|
||||
this.RTB_RAM.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical;
|
||||
this.RTB_RAM.Size = new System.Drawing.Size(364, 292);
|
||||
this.RTB_RAM.TabIndex = 0;
|
||||
this.RTB_RAM.Text = "";
|
||||
//
|
||||
// B_Update
|
||||
//
|
||||
this.B_Update.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.B_Update.Location = new System.Drawing.Point(9, 308);
|
||||
this.B_Update.Name = "B_Update";
|
||||
this.B_Update.Size = new System.Drawing.Size(363, 26);
|
||||
this.B_Update.TabIndex = 1;
|
||||
this.B_Update.Text = "Update";
|
||||
this.B_Update.UseVisualStyleBackColor = true;
|
||||
this.B_Update.Click += new System.EventHandler(this.Update_Click);
|
||||
//
|
||||
// SimpleHexEditor
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(384, 343);
|
||||
this.Controls.Add(this.B_Update);
|
||||
this.Controls.Add(this.RTB_RAM);
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "SimpleHexEditor";
|
||||
this.ShowIcon = false;
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "RAM Edit";
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.RichTextBox RTB_RAM;
|
||||
private Button B_Update;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user