示例#1
0
    public TFactoryPropertyViewModel (IFactoryPresentation presentation)
      : base (presentation, new TFactoryPropertyModel ())
    {
      TypeName = GetType ().Name;

      Model.PropertyChanged += OnModelPropertyChanged;
    }
    public TFactoryListModifyViewModel (IFactoryPresentation presentation)
      : base (presentation, new TFactoryListModifyModel ())
    {
      TypeName = GetType ().Name;

      m_CanLock = false;
    }
示例#3
0
 public TFactoryViewModel (IFactoryPresentation presentation)
   : base (presentation, new TFactoryModel (), useViewModel: true)
 {
   TypeName = GetType ().Name;
 }
示例#4
0
 public TFactoryListTestViewModel (IFactoryPresentation presentation)
   : base (presentation, new TFactoryListTestModel ())
 {
   TypeName = GetType ().Name;
 }
示例#5
0
 public TFactoryDesignViewModel (IFactoryPresentation presentation)
   : base (presentation, new TFactoryDesignModel ())
 {
   TypeName = GetType ().Name;
 }