Vereinsmeisterschaften  22aa7800eae54b428d40e835886cefe1fdefdfdf
This is a software that can be used to manage the internal competition of the swimming club Illertissen called "Vereinsmeisterschaften".
Loading...
Searching...
No Matches
InvertedBooleanToVisibilityConverter.cs
1using System.Globalization;
3using System.Windows.Data;
4
6
12[ValueConversion(typeof(bool), typeof(Visibility))]
13public class InvertedBooleanToVisibilityConverter : IValueConverter
14{
23 public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
24 {
25 if(value != null && value is bool boolVal)
26 {
27 return boolVal ? Visibility.Collapsed : Visibility.Visible;
28 }
29 return Visibility.Visible;
30 }
31
41 public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
42 {
43 throw new NotImplementedException();
44 }
45}
object Convert(object value, Type targetType, object parameter, CultureInfo culture)
Conversion method.
object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
Back conversion method.