如何从页面关闭 silverlight 中的 ChildWindow?
我有 page.xaml 和 childwindow。我如何从 page.xaml 关闭子窗口。单击 page.xaml 中的按钮示例。我如何从代码中获取这个childWindow?
I have page.xaml and childwindow. How i can close the childwindow from page.xaml. Example by click on button in page.xaml. How i can get this childWindow from code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将您的 ChildWindow 示例命名为 x:Name="myChildWindow" 在您的 page.xaml 按钮单击事件中将其放在后面的代码中
Name your ChildWindow example x:Name="myChildWindow" under your page.xaml button click event in your code behind put this
我相信 ChildWindow 对象上有一个 Close 方法。通过调用该方法,窗口将关闭。
请参阅 MSDN文档。
I believe there is a Close method on the ChildWindow object. By calling this method, the window will close.
See the MSDN documentation.