我必须为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做同样的事情
答案 0 :(得分:0)
使用 codeplex 中的Drawing Custom Borders in Windows Forms项目。该项目是一个小型库,可以扩展Windows窗体,具有自定义窗口非客户区的能力。