Esempio n. 1
0
 public static ColumnViewModel <T> Shorten <T>(this ColumnViewModel <T> col, int max)
 {
     col.Shorten(max, "...");
     return(col);
 }
Esempio n. 2
0
 public static ColumnViewModel <T> ShortenWithFullTooltip <T>(this ColumnViewModel <T> col, int max)
 {
     col.Shorten(max, "...");
     col.WithTooltip((o) => col.GetValue(o));
     return(col);
 }