private void Form2_KeyUp(object sender, KeyEventArgs e)
{
if (e.KeyData == Keys.Escape)
{
this.TopMost = false;
this.FormBorderStyle = FormBorderStyle.Sizable;
this.WindowState = FormWindowState.Normal;
FillScreenbtn.Text = "全屏";
}
}
{
if (e.KeyData == Keys.Escape)
{
this.TopMost = false;
this.FormBorderStyle = FormBorderStyle.Sizable;
this.WindowState = FormWindowState.Normal;
FillScreenbtn.Text = "全屏";
}
}