コード例 #1
0
ファイル: EditableIDList.cs プロジェクト: you8/vvvv-sdk
 public EditableIDList(KeyedIDCollection <T> collection, string name)
     : base(collection)
 {
     Name      = name;
     FItems    = collection;
     OwnsItems = true;
     FMapper   = new LazyModelMapper(this);
 }
コード例 #2
0
ファイル: EditableIDList.cs プロジェクト: you8/vvvv-sdk
 protected EditableIDList(IList <T> list, KeyedIDCollection <T> collection, string name, bool allowRenameOnAdd)
     : base(list)
 {
     Name             = name;
     FItems           = collection;
     OwnsItems        = true;
     FMapper          = new LazyModelMapper(this);
     AllowRenameOnAdd = allowRenameOnAdd;
 }
コード例 #3
0
ファイル: IDItem.cs プロジェクト: you8/vvvv-sdk
 public IDItem(string name, bool isRooted)
 {
     FName    = name;
     Mapper   = new LazyModelMapper(this);
     IsRooted = isRooted;
 }