C# WinForm 關於窗體最大化時的是否全屏效果與是否遮蓋工作列

iDotNetSpace發表於2010-04-12
 

0.新建窗體 及新增按鈕

1.
  執行如下按鈕事件
  private void btnFormMax_Click(object sender, EventArgs e)
  {
     if (this.WindowState == FormWindowState.Maximized)
     {
         this.WindowState = FormWindowState.Normal;
     }
     else
     {
         this.WindowState = FormWindowState.Maximized;
     }
  }
  窗體最大化時 非全屏 不會遮蓋工作列
  此時this.FormBorderStyle. 預設為 Sizable

2.
  執行如下按鈕事件
  private void btnFormMax_Click(object sender, EventArgs e)
  {
      if (this.WindowState == FormWindowState.Maximized)
      {        
         this.WindowState = FormWindowState.Normal;
      }
      else
      {
         this.FormBorderStyle. = FormBorderStyle.None;
         this.WindowState = FormWindowState.Maximized;
      }
   }

  窗體最大化時 會全屏 及遮蓋工作列
  此時this.FormBorderStyle. 為 None 不會顯示窗體標題欄等相關

3.
  執行如下按鈕事件
  private void btnFormMax_Click(object sender, EventArgs e)
  {
      if (this.WindowState == FormWindowState.Maximized)
      {        
         this.WindowState = FormWindowState.Normal;
      }
      else
      {
         this.FormBorderStyle. = FormBorderStyle.None;
         this.MaximumSize = new Size(Screen.PrimaryScreen.WorkingArea.Width, Screen.PrimaryScreen.WorkingArea.Height);
         this.WindowState = FormWindowState.Maximized;
      }
   }

  窗體最大化時 非全屏 不會遮蓋工作列
  此時this.FormBorderStyle. 為 None 不會顯示窗體標題欄等相關


[轉]窗體最大化的時候,如何指定窗體的位置、大小(C#) http://www.cnblogs.com/adandelion/archive/2008/04/03/1136198.html 
using System; 
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Data; 
using System.Drawing; 
using System.Text; 
using System.Windows.Forms; 

namespace WindowsApplication1 

public partial class FormRegion : Form 

private const long WM_GETMINMAXINFO = 0x24; 

public struct POINTAPI 

public int x; 
public int y; 


public struct MINMAXINFO 

public POINTAPI ptReserved; 
public POINTAPI ptMaxSize; 
public POINTAPI ptMaxPosition; 
public POINTAPI ptMinTrackSize; 
public POINTAPI ptMaxTrackSize; 

public FormRegion() 

InitializeComponent(); 
this.MaximumSize = new Size(Screen.PrimaryScreen.WorkingArea.Width, Screen.PrimaryScreen.WorkingArea.Height); 



protected override void WndProc(ref System.Windows.Forms.Message m) 

base.WndProc(ref m); 
if (m.Msg == WM_GETMINMAXINFO) 

MINMAXINFO mmi = (MINMAXINFO)m.GetLParam(typeof(MINMAXINFO)); 
mmi.ptMinTrackSize.x = this.MinimumSize.Width; 
mmi.ptMinTrackSize.y = this.MinimumSize.Height; 
if (this.MaximumSize.Width != 0 || this.MaximumSize.Height != 0) 

mmi.ptMaxTrackSize.x = this.MaximumSize.Width; 
mmi.ptMaxTrackSize.y = this.MaximumSize.Height; 

mmi.ptMaxPosition.x = 1; 
mmi.ptMaxPosition.y = 1; 

System.Runtime.InteropServices.Marshal.StructureToPtr(mmi, m.LParam, true); 



}  


MessageBox.Show("當前窗體標題欄高度"+(this.Height - this.ClientRectangle.Height).ToString());//獲得當前窗體標題欄高度 

ClientRectangle//獲取表示控制元件的工作區的矩形 

MessageBox.Show(SystemInformation.PrimaryMonitorSize.ToString()); //獲取主顯示器螢幕的尺寸(畫素) 
//獲取主顯示器當前當前視訊模式的尺寸(以象素為單位) 

MessageBox.Show("選單欄高度"+SystemInformation.MenuHeight.ToString()); //獲取標準選單欄的高度 
MessageBox.Show("標題欄高度"+SystemInformation.CaptionHeight.ToString()); //獲取標準標題欄的高度 

MenuHeight//獲取一個選單行的高度(以象素為單位) 

CaptionHeight//獲取視窗的標準標題欄區域的高度(以象素為單位)

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-655635/,如需轉載,請註明出處,否則將追究法律責任。

相關文章