예제 #1
0
 public UIModel(UIProperty <IViewModel <TModel> > model) => _model = model;
예제 #2
0
 internal FluentPropertyRegistration(string name, UiActor actor)
 {
     Actor    = actor;
     Property = new UIProperty <TData>(name);
     actor.RegisterProperty(Property);
 }
 public UICollectionProperty(UIProperty <IObservableCollection <TData> > property)
 {
     Property    = property;
     _collection = property.Value;
     property.Subscribe(c => _collection = c);
 }