gpt4 book ai didi

delphi - 在 Delphi 中使用复选框

转载 作者:行者123 更新时间:2023-12-02 05:33:08 25 4
gpt4 key购买 nike

我的问题如下所示,所以我希望所有复选框粗体、斜体和下划线都能在我检查了所有复选框后解决。

我尝试从这个网站搜索类似的问题来帮助我,但他们的问题只是令人困惑..

procedure TForm1.CheckBox1Click(Sender: TObject);
begin
if Checkbox1.Checked = True then
Label1.Font.Style := [fsBold] else
Label1.Font.Style := [];
end;

procedure TForm1.CheckBox2Click(Sender: TObject);
begin
if Checkbox2.Checked = True then
Label1.Font.Style := [fsItalic] else
Label1.Font.Style := [];
end;

procedure TForm1.CheckBox3Click(Sender: TObject);
begin
if Checkbox3.Checked = True then
Label1.Font.Style := [fsUnderline] else
Label1.Font.Style := [];
end;

end;

最佳答案

字体样式是一组不同的 TFontStyle,因此对于每个复选框,您需要将相应的样式添加到集合中(如果已选中)或将其删除(如果未选中),例如

if Checkbox1.Checked then
Label1.Font.Style := Label1.Font.Style + [fsBold];
else
Label1.Font.Style := Label1.Font.Style - [fsBold]

PS:您应该始终直接使用 bool 值,而不是将它们与 True/False

关于delphi - 在 Delphi 中使用复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44110697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com