Delphi Prism:如何从另一个窗体访问主窗体上的控件以更新其属性?
我看过一个非常相似的 stackoverflow 问题,但答案对我没有帮助。
假设我在主窗体上有一个 TLabel,并且有 winform A 和 B。Winform B 是从 winform A 启动的。如何做您可以从 winform B 访问 mainform 上的 TLabel 来更新其(例如)Text 属性吗?
提前致谢。
I have looked at a very similar stackoverflow question(s), but the answers aren't helping me.
Updating textbox on mainform with a variable on a child form that is launched from main form
Say I have a TLabel on the Mainform and I have winform A and B. Winform B is launched from winform A. How do you get access to the TLabel on mainform from winform B to update its (say) Text property?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Program.pas 中,创建静态 main winform,如下所示:
在 Main 方法中执行以下操作:
In Program.pas, create static main winform as follows:
In Main method do the following: