我需要将值从打开的窗口返回到用户对象而不关闭当前窗口
我有用户对象保存数据窗口,我需要打开其他窗口来搜索它并进行一些操作,然后在用户对象的数据窗口中插入而不关闭窗口。
I have user object hold datawindow , i need to open other window to search on it and make some operation then insert in datawindow on user object without close window.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想到两种可能性:
直接访问(快速而肮脏):
OpenWithParm()
打开第二个窗口并将数据窗口作为参数。更好的方法(将进程和 GUI 解耦):
OpenWithParm()
和this
作为参数让调用它的第二个窗口Message.PowerobjectParm
获取调用者I think of two possibilities :
Direct access (quick and dirty) :
OpenWithParm()
and give the datawindow as argument.open()
event of that second window, you can get that datawindow viaMessage.PowerobjectParm
Better way (decoupling the process and the GUI) :
OpenWithParm()
withthis
as argument to let the second window who is calling itMessage.PowerobjectParm