initial commit
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
using Pulsar.Common.Models;
|
||||
using Pulsar.Server.Forms.DarkMode;
|
||||
using Pulsar.Server.Registry;
|
||||
using System;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Pulsar.Server.Forms
|
||||
{
|
||||
public partial class FrmRegValueEditBinary : Form
|
||||
{
|
||||
private readonly RegValueData _value;
|
||||
|
||||
private const string INVALID_BINARY_ERROR = "The binary value was invalid and could not be converted correctly.";
|
||||
|
||||
public FrmRegValueEditBinary(RegValueData value)
|
||||
{
|
||||
_value = value;
|
||||
|
||||
InitializeComponent();
|
||||
|
||||
DarkModeManager.ApplyDarkMode(this);
|
||||
ScreenCaptureHider.ScreenCaptureHider.Apply(this.Handle);
|
||||
|
||||
this.valueNameTxtBox.Text = RegValueHelper.GetName(value.Name);
|
||||
hexEditor.HexTable = value.Data;
|
||||
}
|
||||
|
||||
private void okButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
byte[] bytes = hexEditor.HexTable;
|
||||
if (bytes != null)
|
||||
{
|
||||
try
|
||||
{
|
||||
_value.Data = bytes;
|
||||
this.DialogResult = DialogResult.OK;
|
||||
this.Tag = _value;
|
||||
}
|
||||
catch
|
||||
{
|
||||
ShowWarning(INVALID_BINARY_ERROR, "Warning");
|
||||
this.DialogResult = DialogResult.None;
|
||||
}
|
||||
}
|
||||
|
||||
this.Close();
|
||||
}
|
||||
|
||||
private void ShowWarning(string msg, string caption)
|
||||
{
|
||||
MessageBox.Show(msg, caption, MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user