Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何以编程方式在 Clarion 中设置按钮文本?显然我可以使用设计器界面在控件上设置默认文本,但我希望能够更改代码中的显示文本。有没有办法做到这一点?
我已经尝试过以下方法,但没有任何工作甚至编译:
?Button1:Text = 'Test'
您可以使用以下方式以编程方式设置 Clarion 中按钮的文本PROP:text:
PROP:text
?Button1{PROP:Text} = 'Test'
我根据我在这里遇到的另一个问题的一些研究得出了这一点。