如何将点击从表单发送到表单
我有 Windows 移动程序,有 2 种形式。
在 form1 中,我有 TextBox,在 form2 中,我有 5 个按钮。
如何做到这一点,当我按下 form2 中的按钮时,我会在 form1 的文本框中看到它们
i have windows-mobile program that has 2 forms.
in form1, i have TextBox and in form2, i have 5 buttons.
how to do that when i press the buttons that in form2 i'll see them on the textbox that in form1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在表单上创建一个公共属性,允许调用表单访问所选值。
然后,您可以在释放表单之前从调用表单中获取该值。
Create a public property on your form that will allow the calling form to access the chosen value.
Then from your calling form you can obtain this value before the form is disposed.