作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的问题如下所示,所以我希望所有复选框粗体、斜体和下划线都能在我检查了所有复选框后解决。
我尝试从这个网站搜索类似的问题来帮助我,但他们的问题只是令人困惑..
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/
我是一名优秀的程序员,十分优秀!