コード例 #1
0
 public CompareModelEventComparer(TVirtualStringTree treeView, OLVColumn col, SortOrder order, OLVColumn col2, SortOrder order2)
     : this(treeView, col, order)
 {
     if (((col != col2) && (col2 != null)) && (order2 != SortOrder.None))
     {
         this.secondComparer = new CompareModelEventComparer(treeView, col2, order2);
     }
 }
コード例 #2
0
 public CompareModelEventComparer(TVirtualStringTree treeView, OLVColumn column, SortOrder sortOrder)
 {
     this.treeView  = treeView;
     this.column    = column;
     this.sortOrder = sortOrder;
 }
コード例 #3
0
 public OLVColumnCollection(TVirtualStringTree owner)
     : base(owner)
 {
     this.owner = owner;
 }