コード例 #1
0
 public GridViewInfo(GridViewTemplate ownerTemplate)
 {
     this.ownerTemplate = ownerTemplate;
     this.pinnedRows    = new GridViewPinnedRowCollection(this);
     this.summaryRows   = new GridViewSummaryRowCollection((IList <GridViewSummaryRowInfo>) new List <GridViewSummaryRowInfo>());
     this.systemRows    = new GridViewSystemRowCollection(this);
     this.childRows     = new GridViewChildRowCollection();
     this.ownerTemplate.PropertyChanged += new PropertyChangedEventHandler(this.OnTemplatePropertyChanged);
 }
コード例 #2
0
 public void Dispose()
 {
     this.collection = (GridViewPinnedRowCollection)null;
 }
コード例 #3
0
 public GridViewPinnedRowsCollectionEnumerator(GridViewPinnedRowCollection collection)
 {
     this.collection = collection;
 }