gpt4 book ai didi

windows-phone-7 - 如何将 SystemTray Progressbar 绑定(bind)到选定 PivotItem DataContext 中的属性

转载 作者:行者123 更新时间:2023-12-04 20:19:54 24 4
gpt4 key购买 nike

我有一个带有 Pivot 和 3 PivotItems 的应用程序。每个 PivotItem 都有自己的 DataContext,DataContext 有一个名为 IsLoading 的属性。

可以将 SystemTray.ProgressIndicator IsVisible 属性绑定(bind)到选定的数据透视项 DataContext.IsLoading 属性吗?

这是我尝试过的:

<shell:SystemTray.ProgressIndicator>
<shell:ProgressIndicator
IsVisible="{Binding ElementName=pivot, Path=SelectedItem.DataContext.IsLoading}" />
</shell:SystemTray.ProgressIndicator>
<Grid Background="Transparent">
<controls:Pivot x:Name="pivot">

<controls:PivotItem Header="pivot item"
Margin="0,28,24,0"
DataContext="{Binding DCOne}" />

<controls:PivotItem Header="pivot item"
Margin="0,28,24,0"
DataContext="{Binding DCTwo}" />

<controls:PivotItem Header="pivot item"
Margin="0,28,24,0"
DataContext="{Binding DCThree}" />
</Grid>

最佳答案

试试这个:

http://www.codeproject.com/Articles/246355/Binding-the-WP7-ProgressIndicator-in-XAML?display=Print

<a:ProgressIndicatorProxy IsVisible="{Binding ElementName=pivot, Path=SelectedItem.DataContext.IsLoading}" />

(没试过)

关于windows-phone-7 - 如何将 SystemTray Progressbar 绑定(bind)到选定 PivotItem DataContext 中的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7731506/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com