Silverlight 中的数据绑定进度条值和最大值

发布于 2024-12-04 03:51:08 字数 126 浏览 2 评论 0原文

我正在尝试实现一个进度条来监视 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

囚你心 2024-12-11 03:51:08

这个 XAML:

<ProgressBar Value="{Binding DownloadProgress, Mode=OneWay}" Minimum="0" Maximum="{Binding DownloadSize, Mode=OneWay}" IsHitTestVisible="False" />

应该可以做到。

This XAML:

<ProgressBar Value="{Binding DownloadProgress, Mode=OneWay}" Minimum="0" Maximum="{Binding DownloadSize, Mode=OneWay}" IsHitTestVisible="False" />

should do it.

慢慢从新开始 2024-12-11 03:51:08

但请注意 SL 错误。确保 XAML 中的最大绑定出现在值绑定之前。

Beware of this SL bug however. Make sure Maximum binding appears before the Value binding in the XAML.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文