This commit is contained in:
2022-07-03 20:06:06 +00:00
parent 7c32e9767e
commit a86fb4838b
3 changed files with 25 additions and 14 deletions

View File

@@ -18,5 +18,18 @@ namespace AyaNovaQBI
btnCancel.Text = util.AyaTranslations["Cancel"];
btnOK.Text = util.AyaTranslations["OK"];
}
private void btnOK_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.OK;
Close();
}
private void btnCancel_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.Cancel;
Close();
}
}
}