如何在Dock窗口上更改标题栏的Backcolor?

时间:2012-08-13 08:15:22

标签: c# winforms docking dockpanel

我必须为DockWindow的TitleBar着色。我可以为普通winform Titlebar color着色..但如果它停靠在右侧,左侧,顶部,底部,我不知道如何更改dockwindow titlebar的颜色。

    [DllImport("User32.dll", CharSet = CharSet.Auto)]
    public static extern int ReleaseDC(IntPtr hWnd, IntPtr hDC);

    [DllImport("User32.dll")]
    private static extern IntPtr GetWindowDC(IntPtr hWnd);

    protected override void WndProc(ref Message m)
    {
        base.WndProc(ref m);
        const int WM_NCPAINT = 0x85;
        if (m.Msg == WM_NCPAINT)
        {
            IntPtr hdc = GetWindowDC(m.HWnd);
            if ((int)hdc != 0)
            {
                Graphics g = Graphics.FromHdc(hdc);
                g.FillRectangle(Brushes.Green, new Rectangle(0, 0, 4800, 23));
                    //(0, 0, 400, 252));
                g.Flush();
                ReleaseDC(m.HWnd, hdc);
            }
        }
    }

通过使用这个,我可以绘制Normal winform的标题栏。但我不能为Dockwindow做同样的事情

1 个答案:

答案 0 :(得分:0)

使用 codeplex 中的Drawing Custom Borders in Windows Forms项目。该项目是一个小型库,可以扩展Windows窗体,具有自定义窗口非客户区的能力。