标题:[推荐]一個具有浮雕效果的例子
只看楼主
yang39921
Rank: 1
等 级:新手上路
帖 子:73
专家分:0
注 册:2005-10-10
 问题点数:0 回复次数:0 
[推荐]一個具有浮雕效果的例子
procedure TMainForm.FormPaint(Sender: TObject);
var fontrecall:tfontrecall;
begin
fontrecall:=tfontrecall.Create(canvas.Font);
try
setbkmode(canvas.Handle,windows.TRANSPARENT);
canvas.Font.Color:=clwhite;
canvas.Font.Style:=[fsitalic,fsbold];
canvas.Font.Size:=16;
canvas.Font.Name:='times new roman';
canvas.TextOut(19,19,'http://www.borland.com');
canvas.Font.Color:=clgray;
canvas.TextOut(20,20,'http://www.borland.com');
canvas.Font.Assign(fontrecall.Reference);
finally
fontrecall.Free;
end;
在窗体的事件相應窗口onpaint屬性雙擊輸入即可
搜索更多相关主题的帖子: procedure 浮雕 
2005-11-22 14:29



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-34647-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.564212 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved