17 lines
549 B
C#
17 lines
549 B
C#
using System;
|
|
using System.Windows;
|
|
using System.Windows.Data;
|
|
using System.Globalization;
|
|
|
|
namespace Elwig.Controls {
|
|
public class VisibilityConverter : IValueConverter {
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) {
|
|
return (bool)value ? Visibility.Visible : Visibility.Collapsed;
|
|
}
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) {
|
|
return (Visibility)value == Visibility.Visible;
|
|
}
|
|
}
|
|
}
|