C#中讓控件全屏顯示的實現(xiàn)代碼
來源:易賢網(wǎng) 閱讀:834 次 日期:2014-09-09 09:24:52
溫馨提示:易賢網(wǎng)小編為您整理了“C#中讓控件全屏顯示的實現(xiàn)代碼”,方便廣大網(wǎng)友查閱!

1.使用winapi “SetParent” 接口:

代碼如下:

[DllImport("user32.dll", SetLastError = true)]

static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent);

代碼如下:

control.Dock = DockStyle.None;

control.Left = 0;

control.Top = 0;

control.Width = Screen.PrimaryScreen.Bounds.Width;

control.Height = Screen.PrimaryScreen.WorkingArea.Height;

SetParent(control.Handle, IntPtr.Zero);

執(zhí)行上面的代碼后,我們的 control已經(jīng)可以全屏顯示了,但還有一個小問題,我們應該再提供一個功能,讓用戶按某個鍵后,退出全屏,要不然關(guān)不掉,給誰用都比較郁悶。這個時候應該給控件添加相關(guān)事件,取到鍵后返回。我們以Esc鍵為例:

代碼如下:

private void AddEventKeyUp(Control control) {

if (control != null) {

control.KeyUp += new KeyEventHandler(control_KeyUp);

foreach (Control c in control.Controls) {// 需要給子控件也添加上,否則有可能取不到。

AddEventKeyUp(c);

}

}

}

void control_KeyUp(object sender, KeyEventArgs e) {

if (e.KeyCode == Keys.Escape) {

if (control != null) {

SetParent(control.Handle, 原來的parent.Handle);

control.Dock = DockStyle.Fill;

}

}

}

修改后的代碼如下:

代碼如下:

control.Dock = DockStyle.None;

control.Left = 0;

control.Top = 0;

control.Width = Screen.PrimaryScreen.Bounds.Width;

control.Height = Screen.PrimaryScreen.WorkingArea.Height;

AddEventKeyUp(control);

control.Focus();// 獲得焦點,否則也得不到按鍵

SetParent(control.Handle, IntPtr.Zero);

2.新建一個窗口,設置 FormBorderStyle為None,WindowState為Maximized,TopMost為True。然后具體代碼如下:

代碼如下:

AddEventKeyUp(control);

原來的parent.Controls.Clear();

frmFullscreen frm = new frmFullscreen();

frm.Controls.Add(control);

frm.ShowDialog();

代碼如下:

private void AddEventKeyUp(Control control) {

if (control != null) {

control.KeyUp += new KeyEventHandler(control_KeyUp);

foreach (Control c in control.Controls) {

AddEventKeyUp(c);

}

}

}

void control_KeyUp(object sender, KeyEventArgs e) {

if (e.KeyCode == Keys.Escape) {

if (control != null) {

if (frm != null) {

frm.Controls.Clear();

原來的parent.Controls.Add(control);// 這里不能和下面的Close順序錯了,要不然會引起錯誤,因為Close后把控件銷毀了。

frm.Close();

frm = null;

}

}

}

}

經(jīng)過實際使用驗證,第二種方法很好,沒有任何問題。只是需要多開一個窗口。第一種方法有點小問題,就是如果控件上有右鍵菜單什么的,一調(diào)用 會跑到主界面去了。好像鼠標有時候也不太靈。

更多信息請查看IT技術(shù)專欄

更多信息請查看網(wǎng)絡編程
易賢網(wǎng)手機網(wǎng)站地址:C#中讓控件全屏顯示的實現(xiàn)代碼

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)