コード例 #1
0
ファイル: Collection.cs プロジェクト: sunpander/VSDT
 void ICollectionItem.SetCollection(Collection newCollection)
 {
     collection = newCollection;
 }
コード例 #2
0
ファイル: Collection.cs プロジェクト: sunpander/VSDT
 protected override void Dispose(bool disposing)
 {
     if (disposing)
     {
         Collection oldCollection = collection;
         collection = null;
         if (oldCollection != null) oldCollection.Remove(this);
     }
     base.Dispose(disposing);
 }
コード例 #3
0
ファイル: Collection.cs プロジェクト: sunpander/VSDT
 public ComponentCollectionItem()
 {
     collection = null;
     name = "";
 }