关于按钮置顶

首先创建两个button 按钮,将一个按钮button3的属性FlatStyle设置为Flat,这样当两个按钮交替使用的时候有凹凸感

private void button3_Click(object sender, EventArgs e)
{
this.button3.Hide();
this.button9.Show();
this.TopMost = true;
}
取消置顶:
private void button9_Click(object sender, EventArgs e)
{
this.button9.Hide();
this.button3.Show();
this.TopMost =false;

你可能感兴趣的:(关于按钮置顶)