Ejemplo n.º 1
0
    public TFactoryPropertyViewModel (IFactoryPresentation presentation)
      : base (presentation, new TFactoryPropertyModel ())
    {
      TypeName = GetType ().Name;

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

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