コード例 #1
0
 public void SetSortMode(CellContext cellContext, DevAge.Drawing.HeaderSortStyle pStyle)
 {
     m_SortStatus.Style = pStyle;
 }
コード例 #2
0
ファイル: ISortableHeader.cs プロジェクト: unixcrh/Motion
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="p_Style">Status of current sort.</param>
 public SortStatus(DevAge.Drawing.HeaderSortStyle p_Style)
 {
     Style    = p_Style;
     Comparer = null;
 }
コード例 #3
0
ファイル: ISortableHeader.cs プロジェクト: unixcrh/Motion
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="p_Style">Status of current sort.</param>
 /// <param name="p_Comparer">Comparer used to sort the column. The comparer will take 2 Cell. If null the default ValueCellComparer is used.</param>
 public SortStatus(DevAge.Drawing.HeaderSortStyle p_Style, System.Collections.IComparer p_Comparer)
     : this(p_Style)
 {
     Comparer = p_Comparer;
 }
コード例 #4
0
ファイル: ISortableHeader.cs プロジェクト: zhuangyy/Motion
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="p_Style">Status of current sort.</param>
 public SortStatus(DevAge.Drawing.HeaderSortStyle p_Style)
 {
     Style = p_Style;
     Comparer = null;
 }