web-dev-qa-db-ja.com

WinFormのタイトルバーの色を変更する

C#でWinFormのタイトルバーの色を変更することは可能ですか?

          __________________________
         [Form1_______________-|[]|X] <- I want to change the color of this
         |                          |
         |                          |
         |                          |
         |__________________________|
37
Aravind

この問題を解決しました。これはコードです:

[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));
            g.Flush();
            ReleaseDC(m.HWnd, hdc);
        }
    }
}
18
Aravind

できることは、FormBorderStyleプロパティをNoneに設定し、GDIを使用してフォームで何でもしたいことです。

9
Asif Mushtaq

Windowsフォームでのカスタム境界線の描画 プロジェクトCodePlexを使用します。このプロジェクトは、Windowsの非クライアント領域をカスタマイズする機能を備えたWindowsフォームを拡張する小さなライブラリです。

8
Ria