TestItem.cs 338 B

123456789101112131415
  1. using ReactiveUI;
  2. namespace BindingTest.ViewModels
  3. {
  4. public class TestItem : ReactiveObject
  5. {
  6. private string stringValue = "String Value";
  7. public string StringValue
  8. {
  9. get { return stringValue; }
  10. set { this.RaiseAndSetIfChanged(ref this.stringValue, value); }
  11. }
  12. }
  13. }