- private void tsbFullWindow_Click(object sender, EventArgs e)
- {
- if (tsbFullWindow.Text == "全屏")
- {
- tsbFullWindow.Text = "取消全屏";
- tsbFullWindow.Image = Properties.Resources.minimize;
- this.SetVisibleCore(false);
- this.FormBorderStyle = FormBorderStyle.None;
- this.WindowState = FormWindowState.Maximized;
- this.SetVisibleCore(true);
- }
- else
- {
- tsbFullWindow.Text = "全屏";
- tsbFullWindow.Image = Properties.Resources.maximize;
- this.SetVisibleCore(false);
- this.FormBorderStyle = FormBorderStyle.Sizable;
- this.WindowState = FormWindowState.Maximized;
- this.SetVisibleCore(true);
- }
- }
本文转自 h2appy 51CTO博客,原文链接:http://blog.51cto.com/h2appy/1163493,如需转载请自行联系原作者