There is a Progress Bar
<ProgressBar x:Name="progress" Height="50" Value="{Binding MyVar,UpdateSourceTrigger=PropertyChanged}" Minimum="0" Maximum="100"/> There is a property with which I want to associate the Value property public int MyVar { get; set; } public int MyVar { get; set; } public int MyVar { get; set; } When the MyVar property changes, nothing happens, although the idea is that Value should change along with MyVar, although I read a lot where it should work.