首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
Windows程序
> 详细
delphi开发实例:保存字体设置的方法
时间:
2016-04-12 12:57:33
阅读:
284
评论:
0
收藏:
0
[点我收藏+]
标签:
http://blog.csdn.net/delphi308/article/details/9906147
delphi开发实例:保存字体设置的方法
2013-08-11 22:37
446人阅读
评论
(0)
收藏
举报
分类:
Delphi(59)
记得一年前软件里面用到字体设置时,想把字体信息保存到配置文件里面都是把相应的属性分开来保存一下,这样一直使用,最近想delphi自己的dfm文件也同样会保存这些信息,它又是怎样保存的呢。。
用记事本打开dfm文件会看到类似这样的文本:
object Label1: TLabel
Left = 24
Top = 32
Width = 140
Height = 46
Caption = #20445#23384#23454#20363
Font.Charset = GB2312_CHARSET
Font.Color = clBlue
Font.Height = -35
Font.Name = #24494#36719#38597#40657
Font.Style = [fsBold, fsUnderline, fsStrikeOut]
ParentFont = False
end
自己写了个直接保存成文件文件的,记录一下
unit Font2String;
interface
uses
Classes, SysUtils, Dialogs, Graphics;
function Font2File(AFont: TFont; APath: string): Boolean;
function File2Font(APath: string; AFont: TFont): Boolean;
implementation
function Font2File(AFont: TFont; APath: string): Boolean;
var
FD: TFontDialog;
begin
Result := False;
FD := TFontDialog.Create(nil);
try
FD.Font.Assign(AFont);
WriteComponentResFile(APath, FD);
Result := True;
finally
FD.Free;
end;
end;
function File2Font(APath: string; AFont: TFont): Boolean;
var
FD: TFontDialog;
begin
Result := False;
FD := TFontDialog.Create(nil);
try
ReadComponentResFile(APath, FD);//如果此外为nil,下面的注册去掉
AFont.Assign(FD.Font);
Result := True;
finally
FD.Free;
end;
end;
//initialization
//RegisterClass(TFontDialog);
end.
例子:
procedure TForm1.Button1Click(Sender: TObject);
begin
Font2File(Label1.Font, ‘d:\Font.fnt‘);//把字体保存成文件
end;
procedure TForm1.Button2Click(Sender: TObject);
begin
File2Font( ‘d:\Font.fnt‘, Label2.Font);//从文件里读取字体
end;
delphi开发实例:保存字体设置的方法
标签:
原文地址:http://www.cnblogs.com/delphi-xe5/p/5382134.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
动态 WebApi 引擎使用教程(3行代码完成动态 WebApi 构建)
2021-07-28
windows 查看文件的md5/sha1/sha256
2021-07-28
git windows下换行符问题 LF与CRLF转换
2021-07-27
FileExistsError: [WinError 183] 当文件已存在时,无法创建该文件。
2021-07-26
K8S--可视化界面Kubernetes Dashboard(API Server方式)
2021-07-26
Redis安装成windows服务
2021-07-26
c#32位支持大内存(>2gb)
2021-07-23
【c#】Dev BarStaticItem问题汇总
2021-07-23
Exception: URL fetch failure on https://s3.amazonaws.com/text-datasets/nietzsche.txt: None -- [WinError 10054] 远程主机强迫关闭了一个现有的连接。
2021-07-22
WinForm使用DataGridView实现类似Excel表格的查找替换
2021-07-22
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!