Battle-Param-Editor/DataModifier.cs
2022-10-29 16:24:41 +01:00

36 lines
804 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Battle_Param_Editor
{
public partial class DataModifier : Form
{
public DataModifier()
{
InitializeComponent();
btnOk.DialogResult = DialogResult.OK;
btnCancel.DialogResult = DialogResult.Cancel;
}
private void nupAdjustment_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)Keys.Return)
{
btnOk.PerformClick();
}
}
private void btnCancel_Click(object sender, EventArgs e)
{
}
}
}