Advertisement
eduardogr

Untitled

Oct 27th, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.71 KB | None | 0 0
  1.         private bool _progressRingIsActive = true;
  2.         public bool ProgressRingIsActive {
  3.             get { return _progressRingIsActive; }
  4.             set {
  5.                 if (_progressRingIsActive != value) {
  6.                     _progressRingIsActive = value;
  7.                     onPropertyChanged("ProgressRingIsActive");
  8.                 }
  9.             }
  10.         }
  11.  
  12.  <ProgressRing x:Name="pRing"
  13.                       RelativePanel.Above="ForecastList"
  14.                       RelativePanel.AlignHorizontalCenterWith="currentLocation"
  15.                      IsActive="{Binding ProgressRingIsActive, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"
  16.                      RelativePanel.Below="currentLocation" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement