dotNet 傳統型程式改造計劃.視窗篇.Visual Studio.NET 風格的mdi視窗

來源:互聯網
上載者:User

是一個正常的 mdi ,視窗 樣式,不是很好看是吧。

其實、實現這個很簡單有幾行代碼就可以搞定了。
起因是一個朋友問我怎麼實現、我才想起來搞的,以前也做過,不過不是用.net
經過數次實驗終於在 .net 下搞定,特此發文和 CSDN 的朋友們分享,
時間匆忙有錯別字的地方,或不夠詳細的地方請不要罵我.

具體實現方法:

  1. 建立一個mdi視窗 Form1
    using System.Runtime.InteropServices;
    this.IsMdiContainer = true;

  2. 聲明變數若干
    private System.Windows.Forms.MdiClient m_MdiClient;
    public const int MDIS_ALLCHILDSTYLES = 0x0001;
    public const int GWL_STYLE = -16;
    public const int GWL_EXSTYLE = -20;

  3. 聲明API若干
    [DllImport("user32.dll", CharSet=CharSet.Auto)]
    public static extern IntPtr SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
    [DllImport("user32.dll", CharSet=CharSet.Auto)]
    public static extern IntPtr GetWindowLong( IntPtr hWnd,int nIndex);

  4. 在Form1建構函式
    public Form1(){//// Windows 表單設計器支援所必需的//InitializeComponent();this.WindowState= FormWindowState.Maximized;int iCnt=this.Controls.Count;for(int i=0;i<iCnt;i++){if(this.Controls[i] is System.Windows.Forms.MdiClient){this.m_MdiClient=(System.Windows.Forms.MdiClient)this.Controls[i];int style = GetWindowLong(m_MdiClient.Handle,GWL_STYLE).ToInt32();style |=MDIS_ALLCHILDSTYLES;//設定 MDI 地區樣式加入, MDIS_ALLCHILDSTYLES//去掉 mdi 子視窗[右上方按鈕的關鍵]的一步SetWindowLong(m_MdiClient.Handle,GWL_STYLE,style);//設定 MDI 地區擴充樣式 //去掉 mdi 視窗凹陷,根據 windows 編成多年的經驗//擴充樣式為 0 一定就是平的SetWindowLong(m_MdiClient.Handle,GWL_EXSTYLE,0);m_MdiClient.ControlAdded += new ControlEventHandler(m_MdiClient_ControlAdded);break;}}}

  5. 寫m_MdiClient_ControlAdded 事件
    private void m_MdiClient_ControlAdded(object sender, ControlEventArgs e){Form Frm = e.Control as Form;if (Frm!=null){//將加入的 mdi 子視窗,樣式變更,然後 最大化Frm.FormBorderStyle= FormBorderStyle.None;  Frm.WindowState=FormWindowState.Maximized;}}
  6. 再 Form1 的load 事件裡
    private void Form1_Load(object sender, System.EventArgs e){Form2 f2 =new Form2();f2.MdiParent=this;f2.Show();f2.Activate();}
  7. 建立一個 Form2 上面放個 DataGrid Dock,屬性 選 Fill 選,運行程式就可看到 效果

轉載本文請標註,轉載地址、以及作者。

曲濱 2005-3-13

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.