private void IssueDetail_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.F5)
{
if (!CommentEdit.Visible || ButtonCancel.Visible)
MessageBox.Show(this, "Cannot refresh when editing", "Message from BEurtle", MessageBoxButtons.OK, MessageBoxIcon.Warning);
else
{
loadIssue();
}
e.Handled = true;
}
}