20 lines
372 B
C#
20 lines
372 B
C#
|
|
using Prism.Mvvm;
|
|||
|
|
|
|||
|
|
namespace WOWS.Framwork.ViewModels
|
|||
|
|
{
|
|||
|
|
public class MainWindowViewModel : BindableBase
|
|||
|
|
{
|
|||
|
|
private string _title = "Prism Application";
|
|||
|
|
public string Title
|
|||
|
|
{
|
|||
|
|
get { return _title; }
|
|||
|
|
set { SetProperty(ref _title, value); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public MainWindowViewModel()
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|