PUSHBUTTON
私はこのコードでを作成します:
hWndBtn = CreateWindow(L"Button", WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON, x, y, width, height, hWndParent, (HMENU)IDC_MYBUTTON, hInst, NULL);
次に、Ellipse 領域を作成します。
HRGN hRgn = CreateEllipticRgn(x1, y1, x2, y2);
最後に、ボタン領域を設定します:
SetWindowRgn(hWndBtn, hRgn, true);
しかし、私のボタンはまだ長方形です。どうすれば楕円にできますか?