Exemplo n.º 1
0
 public override bool IsEnabled(MDTableContext context)
 {
     return(TableSorter.CanSort(context.MetaDataTableVM.TableInfo) &&
            context.Records.Length > 1 &&
            context.ContiguousRecords());
 }
Exemplo n.º 2
0
 static bool IsEnabledInternal(MDTableContext context) =>
 TableSorter.CanSort(context.MetaDataTableVM.TableInfo) &&
 context.Records.Length > 1 &&
 context.ContiguousRecords();
Exemplo n.º 3
0
 public override bool IsEnabled(MDTableContext context)
 {
     return(TableSorter.CanSort(context.MetaDataTableVM.TableInfo));
 }
Exemplo n.º 4
0
 static bool IsEnabledInternal(MDTableContext context) => TableSorter.CanSort(context.MetaDataTableVM.TableInfo);