aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Statistics/Converters/StringToBoolYesNoNullConverter.cs
blob: f7633a7d0e948d3cda93fa7f5bc9f2075b758a38 (generated by cgit v1.3.1 (git 2.54.0) at 2026-07-15 06:15:20 +0000
an class="w"> public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { if(value is bool) { return (bool)value ? "Yes" : "No"; } return "Null"; } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { //throw new NotImplementedException(); if (value is ComboBoxItem) { string str_val = ((ComboBoxItem)value).Content.ToString(); if (str_val.ToUpper() == "NO") return false; if (str_val.ToUpper() == "YES") return true; } return null; } } }