/// <summary>
 /// Initializes a new instance of the <see cref="TreeListView"/> class.
 /// </summary>
 /// <param name="pOwner">The collection owner.</param>
 internal TreeListViewColumnCollection(TreeListView pOwner)
 {
     this.mOwner = pOwner;
 }
示例#2
0
 /// <summary>
 /// Returns the column collection.
 /// </summary>
 /// <param name="pControl">The tree control.</param>
 /// <returns>The column collection.</returns>
 public static TreeListViewColumnCollection GetColumns(TreeListView pControl)
 {
     return((TreeListViewColumnCollection)pControl.GetValue(ColumnsProperty));
 }