添加关闭按钮
如何在silverlight窗口的右上角添加关闭按钮?
How to add close button on the right top of the window in silverlight?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在silverlight窗口的右上角添加关闭按钮?
How to add close button on the right top of the window in silverlight?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
假设:
1. 您需要使用 silverlight 中的控件来实现关闭功能。
2. 您希望关闭浏览器窗口。.
向 silverlight 控件添加按钮:
添加 OnClick 事件:
如果您想关闭窗口,那么您将需要以一种或另一种方式执行一些 JavaScript。
解决方案 1:
您可以在 html/aspx 页面上添加一个 javascript 函数,例如:
并调用它并添加 OnClick 事件:
解决方案 2:
或者,您可以使用 HtmlPageWindow.Eval() 方法执行“window.close()”,如下所示,无需在页面上使用 javascript 函数:
Assumptions:
1. You are wanting a close function using a control from within silverlight.
2. You are wanting the browser window to be closed..
Adding a button to your silverlight control:
Adding the OnClick event:
If you are wanting to close the window, then you will need to execute some javascript in one way or another.
Solution 1:
You can add a javascript function on your html/aspx page like:
and call it adding the OnClick event:
Solution 2:
Alternatively you can execute the 'window.close()' using the HtmlPageWindow.Eval() method, like so without the need for a javascript function on the page: