Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <xctk:ToggleSwitch HorizontalAlignment="Left" IsChecked="{Binding IsContinue}" />
  2.  
  3. private bool _IsContinue;
  4. public bool IsContinue
  5. {
  6. get { return this._IsContinue; }
  7. set
  8. {
  9. if (this._IsContinue== value)
  10. return;
  11.  
  12. this._IsContinue= value;
  13. OnPropertyChanged("IsContinue");
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement