📜  如何在代码中更改delphi中面板的字体-任何代码示例

📅  最后修改于: 2022-03-11 14:58:59.378000             🧑  作者: Mango

代码示例1
Label1.Font.Name := 'Times New Roman';
Label1.Font.Size := 12;
Label1.Font.Color := clBlue;
// Hope this helps you ;)