可以將視窗的外框加上顏色嗎? |
答題得分者是:Zard
|
hampo
一般會員 發表:13 回覆:4 積分:3 註冊:2004-09-20 發送簡訊給我 |
|
Zard
尊榮會員 發表:24 回覆:396 積分:539 註冊:2003-11-26 發送簡訊給我 |
|
Zard
尊榮會員 發表:24 回覆:396 積分:539 註冊:2003-11-26 發送簡訊給我 |
引言:修正一下, 這樣才對引言: 請問一下:如何將視窗的外框加上色澤呢?一個簡單的範例void __fastcall TForm1::Button1Click(TObject *Sender) { TRect WinRect; HBRUSH hBrush = CreateSolidBrush(RGB(255, 0, 0)); GetWindowRect(Handle, &WinRect); FrameRect(GetDC(0), &WinRect, hBrush); } void __fastcall TForm1::Button3Click(TObject *Sender) { TRect WinRect, DestRect; HBRUSH hBrush = CreateSolidBrush(RGB(255, 0, 0)); GetWindowRect(Handle, &WinRect); DestRect.Left = 0; DestRect.Top = 0; DestRect.Right = WinRect.Right - WinRect.Left; DestRect.Bottom = WinRect.Bottom - WinRect.Top; FrameRect(GetWindowDC(Handle), &DestRect, hBrush); } |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |