Есть ли возможность скрыть GridViewColumn как-то так:
Изменить: для ясности.
К сожалению, свойства IsVisible нет. Я ищу способ создать это.
Изменить: решение, основанное на отзывах, выглядит так:
public class WidthToBooleanConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return (int)value > 0;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
Подробнее здесь: https://stackoverflow.com/questions/139 ... ible-false