You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 line
366 B

  1. using Stylet;
  2. namespace HKCardIN.ViewModels
  3. {
  4. public class RootViewModel : PropertyChangedBase
  5. {
  6. private string _title = "HandyControl Application";
  7. public string Title
  8. {
  9. get { return _title; }
  10. set { SetAndNotify(ref _title, value); }
  11. }
  12. public RootViewModel()
  13. {
  14. }
  15. }
  16. }