gpt4 book ai didi

Delphi - 在设计器中显示多行标题

转载 作者:行者123 更新时间:2023-12-02 20:04:07 25 4
gpt4 key购买 nike

我在运行时替换多个组件的 Caption 以获得多行 Caption

MySpeedButton.Caption := 'Line 1' + #13 + #10 + 'Line 2';

有没有办法说服 Delphi 在设计器中也显示自动换行?

最佳答案

您可以通过在表单的 TextView 中编辑标题来强制TSpeedButton标题为多行:

  object SpeedButton1: TSpeedButton
Left = 8
Top = 63
Width = 113
Height = 50
Caption = 'Line 1Line 2' // original caption
Caption = 'Line 1'#10'Line 2' // modified caption
end

注意!您必须在 #10 两侧添加两个单引号。您可以使用 #13 或同时使用 #13#10,而不是 #10

对于普通的TButton,除了对表单的Text View进行上述修改外,还需要设置WordWrap属性。

关于Delphi - 在设计器中显示多行标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50737198/

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