0
我創建了一個WPF表單,其中包含來自擴展WPF工具包的BusyIndicator。此窗口在新線程上運行並實現INotifyPropertyChanged。接下來,我將BusyContent綁定到在BusyContent上顯示正常的屬性,但似乎沒有更新。有任何想法嗎 ?BusyIndicator BusyContent綁定到WPF窗口中的屬性不會更新
<StackPanel>
<xctk:BusyIndicator IsBusy="True" BusyContent="{Binding BusyText, Mode=TwoWay, NotifyOnSourceUpdated=True, UpdateSourceTrigger=PropertyChanged}" >
</xctk:BusyIndicator>
</StackPanel>
private string _busyText;
public string BusyText
{
get
{
return _busyText;
}
set
{
_busyText = value;
this.OnPropertyChanged("BusyText");
}
}
的問題是你是否阻塞UI線程。 –
WPF使用「Windows」不是窗體... –
因爲屬性在特定時間間隔發生更改,所以我不阻止UI。 – Jim