mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
38 lines
1.2 KiB
C#
38 lines
1.2 KiB
C#
|
using System;
|
||
|
using System.Globalization;
|
||
|
using System.Windows;
|
||
|
using System.Windows.Data;
|
||
|
|
||
|
namespace SourceGit.Converters {
|
||
|
|
||
|
/// <summary>
|
||
|
/// Inverse BoolToCollapsed.
|
||
|
/// </summary>
|
||
|
public class InverseBoolToCollapsed : IValueConverter {
|
||
|
|
||
|
/// <summary>
|
||
|
/// Implement IValueConverter.Convert
|
||
|
/// </summary>
|
||
|
/// <param name="value"></param>
|
||
|
/// <param name="targetType"></param>
|
||
|
/// <param name="parameter"></param>
|
||
|
/// <param name="culture"></param>
|
||
|
/// <returns></returns>
|
||
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) {
|
||
|
return (bool)value ? Visibility.Collapsed : Visibility.Visible;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Implement IValueConverter.ConvertBack
|
||
|
/// </summary>
|
||
|
/// <param name="value"></param>
|
||
|
/// <param name="targetType"></param>
|
||
|
/// <param name="parameter"></param>
|
||
|
/// <param name="culture"></param>
|
||
|
/// <returns></returns>
|
||
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) {
|
||
|
throw new NotImplementedException();
|
||
|
}
|
||
|
}
|
||
|
}
|