I have a periodic thread running in the background of my UWP application and I want to tie certain components' visibility to its execution. I am using caliburn and binding the component like this:
<TextBox Name="sample" Visibility="{Binding JobStatus}" />
C#:
public string JobStatus
{
get
{
if(SponsorReferralUploadService.IsRunning())
return "Collapsed";
else
return "Visible";
}
}
This boolean value is coming from the service layer of the application so it is not possible for me to rewrite/redesign all that code and implement INotifyPropertyChanged
interface.
When I open this page, the Visibility
of the TextBox
is set whether the boolean is true or false, how can I program this in a way that as soon as the value of the boolean is updated, the Visibility
property is changed?
To clarify, data bindings in WPF are not continuously re-evaluated. Once the UI gets a value for your JobStatus property, it's not going to ask again. Unless, that is, you tell it to.
The more common way to do this is to implement
INotifyPropertyChanged
on your ViewModel and then fire the PropertyChanged event. But you can also force the binding to update programmatically by calling theUpdateTarget
method of the binding expression:Without some sort of event telling you when to call this method, you'll be forced to call it repeatedly with a timer:
But if you're using a timer anyway then you should really consider whether you ought to just put the timer in your ViewModel and use it to fire the PropertyChanged event. In my opinion, this sort of detail (i.e. an appropriate frequency for polling the service) ought to be in the ViewModel rather than the View.