Silverlight 4 - 使用 DomainDataSource 的 BusyIndicator
有人可以帮我让它发挥作用吗?我尝试不使用隐藏代码,因为我正在将一些测试应用程序放在一起来测试 WCF Ria 服务。
<my2:BusyIndicator IsBusy="{Binding ElementName=targetDomainDataSource}" BusyContent="{Binding}" DisplayAfter="0:0:0.1">
Can someone please help me get this to work? I am trying not to use code behind as I'm putting a little test application together to test WCF Ria Services.
<my2:BusyIndicator IsBusy="{Binding ElementName=targetDomainDataSource}" BusyContent="{Binding}" DisplayAfter="0:0:0.1">
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也更改您的绑定
IsBusy="{Binding IsBusy, ElementName=targetDomainDataSource}"
Change your binding too
IsBusy="{Binding IsBusy, ElementName=targetDomainDataSource}"