[C#]
FontStyle fs =labelMSG.Font.Style;
FontFamily fm = new FontFamily(labelMSG.Font.Name);
Font f = new Font(fm, fontsize, fs);
labelMSG.Font = f;
[/C#]
標籤: dynamic
Delphi讀取utf8格式ini及取得動態內容
使用Delphi讀取utf8格式時需使用Tmeminifile,另外動態取得的範例。
VAR SYSINI: TMemIniFile; // 讀取utf8格式的ini需使用TMemIniFile
ts:tstringlist;
i:integer;
ApplicationPath:string;
begin
// 先取得目前執行路徑
ApplicationPath := ExtractFilePath(Application.exename);
if ApplicationPath[length(ApplicationPath)] = ‘\’ then
begin
ApplicationPath := copy(ApplicationPath, 1, length(ApplicationPath) – 1);
end;
// 讀取sys.ini裡的memberid區塊並顯示值
MEMO1.Lines.Clear;
ts:=tstringlist.Create;
SYSini := TMemIniFile.Create(ApplicationPath+’\sys.ini’,TEncoding.UTF8);
if NOT (SYSini = nil) then begin
sysini.ReadSection(‘memberid’,ts);
for I:=0 TO TS.Count-1 DO BEGIN
MEMO1.Lines.Add(TS[I]);
MEMO1.LINES.Add(sysini.ReadString(‘MEMBERID’,TS[I],”));
END;
end;
ts.Free;
end;
Delphi動態利用ColorDialog變更元件顏色
利用 ColorToString轉成文字(可存在資料庫中);再透過StringToColor賦值給物件的Color屬性就可以了
uses Vcl.Graphics;
if colordialog1.Execute then begin ;
form1.Color := stringtocolor(colortostring(colordialog1.color));
end;