Enable .NET Core system aware DPI mode

Fix Exit button in window menu
Cleanup
This commit is contained in:
Alexander Horner
2022-12-06 23:25:07 +00:00
parent fde9a03887
commit 012eeaa65f
4 changed files with 48 additions and 84 deletions

View File

@@ -212,5 +212,11 @@ namespace ntfysh_client
using AboutBox d = new AboutBox();
d.ShowDialog();
}
private void exitToolStripMenuItem1_Click(object sender, EventArgs e)
{
_trueExit = true;
Close();
}
}
}