Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我说我有一个progessBar,我怎么知道bar的进度,而不必使用计数器来查看程序走了多少步。
只是为了研究。
带有 MVVM 的 WPF:
使用您将您的属性Databinding绑定到您的 ViewModel 的属性ProgressBarValue
Databinding
ProgressBar
Value
没有 MVVM 和Forms的 WPF :
像这样访问您的ProgressBar(例如使用 name ProgressBar1):
ProgressBar1
var currentvalue = ProgressBar1.Value;