XBAP childWindow 控件是否可用,类似于 Silverlight 3 ChildWindow?
Silverlight 3 工具包有一个 ChildWindow 控件,用于模型弹出窗口等功能。这太棒了。有人知道可以通过 XBAP 使用类似的控件吗?
假设可能有人将该功能移植回 WCF/XBAP ?
尝试在不使用第三方购买的控件的情况下找到解决方案(违反当前的公司政策)。
The Silverlight 3 toolkit has a ChildWindow control for model popup like functionality. This is great. Anyone aware of a similar control that can be utilized via XBAP?
The assumption is maybe someone ported the functionality back to WCF/XBAP?
Trying to find a solution without going to 3rd party purchased controls (against current company policy).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不知道您是否可以在没有 FullTrust 的情况下使其正常工作(在 .NET 4 之前,FullTrust XBAP 是 PITA)。 这是一个伪-解决方法虽然不如 SL ChildWindow 那么好,但它可以为您提供基本的弹出功能。
Don't know that you'll get this to work without FullTrust (FullTrust XBAPs are a PITA until .NET 4). Here's a psuedo-workaround though- not as nice as SL ChildWindow, but it gets you basic popup functionality.
理论上,您不能重建 ChildWindow 源并对其进行一些修改以在 WPF 上工作吗?大多数控件都与 WPF 兼容,因此为 XBAP 构建 ChildWindow 是有意义的。
In theory couldn't you rebuild the ChildWindow source and massage it a little to work on WPF? Most of the controls are WPF compatible, so it would make sense to build ChildWindow for XBAPs.