HI
I added a checkbox to my form that toggles between the form staying at topmost or not.
Problem is it doesn't deactivate when I uncheck the checkbox?
private void OnTopbox_CheckedChanged(object sender, EventArgs e)
{
if (OnTopbox.Checked)
{
this.TopMost = true;
}