我有一个DownloadModel
包含两个属性.我想在一个单独的节目中显示这两个属性的摘要TextBlock
有没有办法通过Download.Part1.Progress
,Download.Part2.Progress
然后一起显示两者的摘要TextBlock
?
(如果有可能这样做Binding
而不是x:Bind
那样也会好的)
谢谢.
你实际上可以Run
在里面使用TextBlock
.你可以像这样使用它:
例如,我有这两个字符串:
private string FirstText = "This is the first text."; private string SecondText = "This is the second text.";
我在我的XAML中有这个:
这就是应用程序的样子:
希望能帮助到你!