两个窗口WPF的数据交换
我实际上正在编写一个 WPF 应用程序。现在,我只是 WPF 的初学者,所以我遇到了一个问题:
在窗口 A 中,有一个带有一些值的复选框。如果我单击窗口 A 上的按钮,窗口 B 应该打开。在窗口 B 上,我有一个文本字段和一个保存按钮。当我单击窗口 B 上的按钮并将其关闭时,文本字段的值应该位于窗口 A 上的复选框中。
首先,我使用 Windows 窗体对此进行编程,然后使用 BindingSource 解决了它。这在 WPF 中不起作用。 我该如何解决这个问题?
I´m actually programming a WPF-application. Now, I´m just a beginner in WPF and so I´ve a problem:
In window A, there is a checkbox with some values. If I click on a button on window A, window B should open. On window B, I have a textfield and a save-button. When I click on the button on window B and close it, the value of the textfield should be in the checkbox on window A.
First, I programmed this with Windows Forms and there I solved it with BindingSource. This doesn´t work in WPF.
How can I solve that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,我想说这与
WPF
或WindowsForms
无关,因为这个想法可以应用于这两个地方。只需使用不同表单之间共享的DataStructure
即可保存您需要的信息以及从不同表单更改的信息。只是给出一个简单的想法:Well, I would say that this nothign to do with
WPF
otWindowsForms
, as idea can be applied in both places. Just use a shared between different formsDataStructure
that holds and information you need and changed from different forms. Just to give a simple idea:PageFunction 允许您返回一个值。
http://msdn.microsoft.com/en-us/library/ms615540.aspx
The PageFunction allows you to return a value.
http://msdn.microsoft.com/en-us/library/ms615540.aspx