Silverlight 中的数据绑定进度条值和最大值
我正在尝试实现一个进度条来监视 HttpWebRequest 中内容的下载。我以前从未使用 XAML 进行过数据绑定,任何人都可以给我一些提示,告诉我如何将进度条的最大值设置为文件大小,并将值设置为下载内容的大小。
谢谢!
I'm trying to implement a progress bar to monitor the downloading of content in a HttpWebRequest. I have never done databinding with XAML before, can anyone please give me tips on how I can set the Maximum value of the progress bar to the file size and the Value to the size of the content downloaded.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个 XAML:
应该可以做到。
This XAML:
should do it.
但请注意此 SL 错误。确保 XAML 中的最大绑定出现在值绑定之前。
Beware of this SL bug however. Make sure Maximum binding appears before the Value binding in the XAML.