PocForm.cs 664 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Windows.Forms;
  3. using PatchNumericUpDownPoC;
  4. namespace PatchNumericUpDown
  5. {
  6. public partial class PocForm : Form
  7. {
  8. public PocForm()
  9. {
  10. InitializeComponent();
  11. }
  12. private void SetButton_Click(object sender, EventArgs e)
  13. {
  14. MainNumericUpDown.Value = 0x7FFFFFFF;
  15. }
  16. private void PatchButton_Click(object sender, EventArgs e)
  17. {
  18. HexadecimalNumericUpDownPatcher.DoPatch();
  19. }
  20. private void UnPatchButton_Click(object sender, EventArgs e)
  21. {
  22. HexadecimalNumericUpDownPatcher.UnPatch();
  23. }
  24. }
  25. }