如何更改ShowMessage的字體 |
尚未結案
|
senix
一般會員 發表:28 回覆:25 積分:10 註冊:2002-03-15 發送簡訊給我 |
|
william
版主 發表:66 回覆:2535 積分:3048 註冊:2002-07-11 發送簡訊給我 |
No, I think there is no simple way to change the font unless you want to monitor window creation and chagne the font settings using the handle of the dialog. You should have a picture if your follow the code of ShowMessage found in Dialogs unit. An easier way is to create your own message dialog.
|
Mickey
版主 發表:77 回覆:1882 積分:1390 註冊:2002-12-11 發送簡訊給我 |
|
timhuang
尊榮會員 發表:78 回覆:1815 積分:1608 註冊:2002-07-15 發送簡訊給我 |
|
liorex
初階會員 發表:19 回覆:60 積分:32 註冊:2002-08-20 發送簡訊給我 |
希望你能用的上
procedure TForm1.Button1Click(Sender: TObject); var from : TForm ; lab : TLabel ; begin from := CreateMessageDialog('afsdfadsfasd',mtInformation, [mbOK]); with from do begin lab := TLabel(FindComponent('Message')) ; if lab <> nil then begin lab.Font.Color := clRed ; //你要的顏色在這裡設 end ; from.ShowModal; end; from.Destroy ; FreeAndNil(from); end;---------------------- 一切有為法 如夢幻泡影 如露亦如電 應做如是觀 ---------------------- |
liorex
初階會員 發表:19 回覆:60 積分:32 註冊:2002-08-20 發送簡訊給我 |
希望你能用的上
procedure TForm1.Button1Click(Sender: TObject); var from : TForm ; lab : TLabel ; begin from := CreateMessageDialog('afsdfadsfasd',mtInformation, [mbOK]); with from do begin lab := TLabel(FindComponent('Message')) ; if lab <> nil then begin lab.Font.Color := clRed ; //你要的顏色在這裡設 lab.Font.Size := 12 ; //字體 lab.Font.Name := '標楷體';//字型 end ; from.ShowModal; end; from.Destroy ; FreeAndNil(from); end;---------------------- 一切有為法 如夢幻泡影 如露亦如電 應做如是觀 ---------------------- |
ianyoung
一般會員 發表:1 回覆:4 積分:1 註冊:2002-08-16 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |