有辦法讓StaticText元件顯示方式變為透明嗎. |
尚未結案
|
jenpeter
一般會員 發表:39 回覆:37 積分:15 註冊:2002-08-14 發送簡訊給我 |
|
evon
一般會員 發表:1 回覆:10 積分:2 註冊:2003-02-19 發送簡訊給我 |
由於StaticText元件為繼承 TWinControl 因此在透空上較麻煩
建議:
1.使用繼承TLable 再依自訂屬性加入外匡。
2.使用StaticText
最簡單的方法就是加入
private
procedure WMEraseBkgnd(var Message: TWMEraseBkgnd); message WM_ERASEBKGND;
... procedure T....WMEraseBkgnd(var Message: TWMEraseBkgnd);
begin
{背景不重繪}
Message.Result := 1;
end;
|
jenpeter
一般會員 發表:39 回覆:37 積分:15 註冊:2002-08-14 發送簡訊給我 |
|
evon
一般會員 發表:1 回覆:10 積分:2 註冊:2003-02-19 發送簡訊給我 |
|
jenpeter
一般會員 發表:39 回覆:37 積分:15 註冊:2002-08-14 發送簡訊給我 |
|
william
版主 發表:66 回覆:2535 積分:3048 註冊:2002-07-11 發送簡訊給我 |
I think you need to tell the Parent to repaint itself, e.g.
procedure MyStaticText.WMEraseBkgnd(var Message: TWMEraseBkgnd); var ARect: TRect; begin ARect := ClientRect; with ARect do begin TopLeft := Parent.ScreenToClient(ClientToScreen(TopLeft)); BottomRight := Parent.ScreenToClient(ClientToScreen(BottomRight)); end; InvalidateRect(Parent.Handle,@ARect,True); RedrawWindow(Handle,nil,0,RDW_FRAME or RDW_INVALIDATE); Message.Result := 1; end; |
william
版主 發表:66 回覆:2535 積分:3048 註冊:2002-07-11 發送簡訊給我 |
|
jenpeter
一般會員 發表:39 回覆:37 積分:15 註冊:2002-08-14 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |