Silverlight BusyIndicator 的 Ajax 风格?
我正在寻找一个示例样式来将 Silverlight BusyIndicator 的外观更改为更像 AJAX 应用程序的“旋转轮”外观。
绕谷歌一圈会产生一些链接,指向人们创建新控件以实现相同目标的地方(我怀疑他们早于 BusyIndicator),但如果可能的话,我宁愿为 BusyIndicator 换肤。
有人给我指出正确的方向吗?
谢谢马克
I'm looking for an example Style to change the look of the Silverlight BusyIndicator to more like the "spinning wheel" look of AJAX apps.
A lap around google produces some links to where people are creating new controls to achieve the same thing (I suspect they pre-date the BusyIndicator) but I'd rather skin the BusyIndicator if possible.
Anyone pont me in the right direction?
Thanks
Mark
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我从 Silverlight Toolkit 制作了自己的自定义
BusyIndicator
以下是您所需要的:
在样式文件中设置系统命名空间:
xmlns:System="clr-namespace:System; assembly=mscorlib"
Put样式文件中的样式/模板:
在 XAML 中使用它:
I made my own custom
BusyIndicator
from Silverlight ToolkitHere is what you need:
Set the System namespace in your style file:
xmlns:System="clr-namespace:System;assembly=mscorlib"
Put the style/template in your style file:
Use it in your XAML:
嗯,确实是一个常见的场景.. Silverlight 开发人员通常使用
链接此类控件。但由于您的要求是像 AJAX 一样,我认为这个链接可能会有所帮助:
http://chrisa.wordpress.com/2008 /10/09/a-wait-indicator-in-silverlight/
以下是有关如何自定义忙碌指示器数据模板的一些提示:
http://www.jeff.wilcox.name/2009/11 /busy-indicator-control/
问候。
Well really a common scenario.. Silverlight devs usually use
Link this type of control. but as your requirement is to have it like AJAX i think this link could be helpful:
http://chrisa.wordpress.com/2008/10/09/a-wait-indicator-in-silverlight/
Here are some hints on how to customize data template for busy indicator:
http://www.jeff.wilcox.name/2009/11/busy-indicator-control/
Regards.