Ejemplo n.º 1
0
 void _ChooseSortType(out enSortType etype)
 {
     if (true == radioButton_month.Checked)
     {
         etype = enSortType.enSortByMonth;
     }
     else
     {
         etype = enSortType.enSortByDay;
     }
 }
Ejemplo n.º 2
0
 public Editor_PropertyGridSortTypeAttribute(IComparer <WPG.Data.Property> comparer)
 {
     SortType = enSortType.Custom;
     Comparer = comparer;
 }
Ejemplo n.º 3
0
 public Editor_PropertyGridSortTypeAttribute()
 {
     SortType = enSortType.NoSort;
 }