如何在silverlight中绑定页面属性?
我有一个 silverlight 页面,代码隐藏中有一个布尔属性。
在 xaml 中,我有一个选项卡控件,其中一个 tabitem 的内容是一个忙碌指示器。
我想将 busyindicator 的 isbusy 属性绑定到代码隐藏中的布尔属性,但无论我使用什么绑定语句都无法解析它。
I have a silverlight page with a boolean property in the codebehind.
In the xaml I have a tabcontrol and inside one of the tabitem's content is a busyindicator.
I want to bind the busyindicator's isbusy property to the boolean property in the codebehind, but I can't resolve it no matter what binding statement I use.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Slugster 确实有一个简洁的解决方案,但我认为您正在寻找的是这个
Slugster does have a neat solution but I think what you are looking for is this
Slugster 和 AntSlay,你们的两个解决方案都有效。我发现这也有效:
Slugster and AntSlay, both of your solutions worked. I found that this works also:
在代码隐藏中,您需要确保已设置 DataContext。因此,在页面的加载事件中,输入以下内容:
如果您已经完成了此操作,那么您将需要发布更多详细信息。
In the codebehind, you need to make sure you have set the DataContext. So in the Load event of your page, put this:
If you have already done this then you will need to post more details.
我有一个类似这样的标签
,在 XAML 中
我确信您可以使用繁忙指示器做同样的事情。
I have something like this for a Label
and in XAML
I'm sure you can do the same thing with busy indicator.