程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#編寫Windows Mobile窗口全屏幕顯示實例代碼

C#編寫Windows Mobile窗口全屏幕顯示實例代碼

編輯:C#入門知識

C#編寫Windows Mobile窗口全屏幕顯示方法代碼如下:

全屏:
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.Menu = null; //若不設置為null則底端的菜單仍然會顯示
this.ControlBox = false;

恢復正常:
this.WindowState = System.Windows.Forms.FormWindowState.Normal;
this.Menu = this.mainMenu1; //mainMenu1為VS自動生成的名稱,可根據情況自行修改
this.ControlBox = true;

希望上面的代碼能對你有所收獲。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved