Silverlight 中的滑动弹出窗口
当用户将鼠标悬停在某个控件上时,我需要在 Silverlight 4.0 中实现一个弹出窗口。并且弹出窗口应该从控件中滑出。我可以显示一个弹出窗口。但无法为其提供滑动效果。请帮帮我。
提前致谢。
I've one requirement to implement a popup in Silverlight 4.0 when user hovers mouse over some control. And the popup should slide out from the control. I can show a popup. But can't give a sliding effect to it. Please help me out.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我一直在使用带有阴影的矩形来滑动类型“弹出窗口”。如果您需要模态类型,您可以禁用背景。
这是使用纯 xaml,但故事板可以从代码隐藏中调用。
参考交互性
我正在使用导航页面,因此滑入和滑出转换的代码如下所示。
LayoutRoot
这是一个非常粗略的示例,但应该可以帮助您入门。
我们将“弹出”容器放置在主画布边缘的视图之外。
创建故事板以将其滑入和滑回。
可以使用基于 xaml 的触发器或从代码隐藏来调用故事板。
I've been using rectangles with a drop shadow for sliding type "popups". You can disable the background if you need a modal type.
This is using pure xaml but the storyboards can be called from codebehind.
Reference to interactivity
I'm using navigation pages so my code for the slide in and out transitions look as follows.
The LayoutRoot
This is a very crude example but should get you started.
We have the "popup" container sitting out of view right on the very edge of the main canvas.
Create storyboards to slide it in and slide it back.
Storyboards can be called with xaml based triggers or from codebehind.