สำหรับ C# Source Code สำหรับรัน Full Screen Mode ตอนรันโปรแกรม เป็น C# Source Code ง่ายๆ สำหรับให้ขึ้น Full Screen นะครับ
เริ่มด้วยการตั้งตัวแปรเพื่อกำหนดให้มีการใช้ Full Screen Mode
1 | private bool bFullScreen; |
ต่อจากนั้นก็เป็นตอนรัน InitializeComponent(); ใช้โค้ดนี่ต่อท้ายนะครับ
01 02 03 04 05 06 07 08 09 10 11 12 | <pre> if (bFullScreen == false ) { this .FormBorderStyle = FormBorderStyle.None; this .WindowState = FormWindowState.Maximized; bFullScreen = true ; } else { this .FormBorderStyle = FormBorderStyle.Sizable; this .WindowState = FormWindowState.Normal; // .Maximized; bFullScreen = false ; } |
มาดู Source Code เต็มๆของฟอร์มเลยก็แล้วกันตามนี้
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | using System; using System.Collections.Generic; using System.Drawing; using System.Windows.Forms; namespace FullScreen_Example { /// <summary> /// Description of MainForm. /// </summary> public partial class MainForm : Form { private bool bFullScreen; public MainForm() { // // The InitializeComponent() call is required for Windows Forms designer support. // InitializeComponent(); if (bFullScreen == false ) { this .FormBorderStyle = FormBorderStyle.None; this .WindowState = FormWindowState.Maximized; bFullScreen = true ; } else { this .FormBorderStyle = FormBorderStyle.Sizable; this .WindowState = FormWindowState.Normal; // .Maximized; bFullScreen = false ; } // // TODO: Add constructor code after the InitializeComponent() call. // } } } |
เท่านี้ก็สามารถรัน Full Screen Mode ได้แล้ว
No comments:
Post a Comment