選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

20 行
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. }