blob: 63fa90b419ba68a12ab3eeabe4366f473c55ac74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using System;
using System.Globalization;
using System.Windows;
using System.Windows.Data;
namespace MaterialDesignThemes.Wpf.Converters
{
public class NotZeroToVisibilityConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
double val;
double.TryParse((value ?? "").ToString(), out val);
return Math.Abs(val) > 0.0 ? Visibility.Visible : Visibility.Collapsed;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return Binding.DoNothing;
}
}
}
|