银色光子窗
我怎样才能让我的childWindow始终位于最上面?
how can i do my childWindow to be always on top?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我怎样才能让我的childWindow始终位于最上面?
how can i do my childWindow to be always on top?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如果您所说的 ChildWindows 是指 Silverlight 中的 ChildWindow 对象,那么它应该始终显示在顶部,如 文档 说:
但是,如果 ChildWindow 您指的是在 Silverlight 中创建的其他内容,那么您需要设置 ZIndex 该对象的属性为一个非常大的数字:
在代码隐藏中,您可以编写:
在 XAML 中,您需要编写
If by ChildWindows you mean the ChildWindow object in Silverlight then it should always appear on top, as the documentation says:
But if by ChildWindow you mean something else you created in Silverlight then you need to set the ZIndex property of that object to a very big number:
In codebehind you would write:
and in XAML you would need to write
也许 Popup 控件会对您有所帮助?
http://jesseliberty.com//2008/06/06/popup-control /
Maybe Popup control will help you?
http://jesseliberty.com//2008/06/06/popup-control/