blob: 4e8210fe747a8110f181d95121c8cb1ce3624a06 (
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.Data;
namespace MaterialDesignThemes.Wpf.Converters
{
public class NotZeroConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (double.TryParse((value ?? "").ToString(), out double val))
{
return Math.Abs(val) > 0.0;
}
return null;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return Binding.DoNothing;
}
}
}
|