Controls: Add UnitTextBox

This commit is contained in:
2023-11-04 21:40:54 +01:00
parent 12226c3d0f
commit 6435a649b4
12 changed files with 118 additions and 57 deletions

View File

@ -1,16 +1,17 @@
using System;
using System.Windows.Data;
using System.Globalization;
namespace Elwig.Controls {
public class BoolToValueConverter<T> : IValueConverter {
public T FalseValue { get; set; }
public T TrueValue { get; set; }
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) {
return (bool)value ? TrueValue : FalseValue;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) {
return value?.Equals(TrueValue) ?? false;
}
}