将数据绑定到busyindicator内的数据模板的问题

Posted

技术标签:

【中文标题】将数据绑定到busyindicator内的数据模板的问题【英文标题】:problems with binding data to data templates inside a busyindicator 【发布时间】:2012-09-13 00:02:09 【问题描述】:

我在 wpf 中有一些代码,因为我使用了 busyindicator 并且我设置了 datatemplete 现在我的问题是我在我的应用程序中使用了 mvvm 模式,我想在上面使用 busyindicator 但我不知道如何在里面绑定文本块busyindicaor 数据模板。我的代码看起来像

<extended:BusyIndicator Name="_busyIndicator">
    <extended:BusyIndicator.BusyContentTemplate>
        <DataTemplate>
            <StackPanel Margin="4">
                <TextBlock Text="Downloading Email" FontWeight="Bold" HorizontalAlignment="Center" Name="Dhaval"/>
                <StackPanel Margin="4">
                    <TextBlock Text="Downloading message 4/10..."/>
                    <ProgressBar Value="40" Height="15" x:Name="Progress_Dhaval"/>
                </StackPanel>
            </StackPanel>
        </DataTemplate>
    </extended:BusyIndicator.BusyContentTemplate>

【问题讨论】:

在模板中绑定或者从模板中绑定完全一样,你只要写Text="Binding YourProperty" =) 在我编写普通绑定时它不起作用。 我在您的数据模板中看不到任何绑定 假设 textblock 文本属性现在已绑定......告诉我。 【参考方案1】:

您可以将绑定与RelativeSource 一起使用。

在您的 ViewModel 中添加此属性:

        private string _busyText;
        public string BusyText
        
            get  return _busyText; 
            set  _busyText = value; RaisePropertyChanged(() => BusyText); 
        

并改变这一行:

<TextBlock Text="Downloading message 4/10..."/>

关于这个:

<TextBlock Text="Binding Path=DataContext.BusyText, RelativeSource=RelativeSource Mode=FindAncestor, AncestorType=Window" />

【讨论】:

这就是我想要的,非常感谢 kmatyaszek。

以上是关于将数据绑定到busyindicator内的数据模板的问题的主要内容,如果未能解决你的问题,请参考以下文章

使用字符串插值将控件从FormGroup绑定到* ngFor内的模板

使用 DataGrid 内的 DataTrigger 绑定到 DataRowView

Ionic 4 Angular模板与异步管道绑定到可观察

在 Angular JS 中检索 Iframe 内的数据绑定值

UWP 数据绑定:如何将按钮命令设置为 DataTemplate 中的父 DataContext

在类约会模板内的链接按钮上设置事件处理程序不会触发