コード例 #1
0
 public static ColumnViewModel <T> Shorten <T>(this ColumnViewModel <T> col, int max)
 {
     col.Shorten(max, "...");
     return(col);
 }
コード例 #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);
 }