C# WinForm程序的全屏功能代码
privatevoidtsbFullWindow_Click(objectsender,EventArgse){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);}}
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。