我的表中有一个位字段,我需要将其转换为与 1 或 0 相关的 Yes 或 No。到目前为止,我正在使用这样的转换器,但它不太工作。
由于我绑定到一个组合框,我需要在代码中填充它,但是没有一个字段可以将 DisplayMemberPath 和 SelectedValuePath 设置为。
另外,我的 debugger.break() 也不起作用。
谢谢你的帮助
public class BooleanToYesNoConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
Debugger.Break();
if (value == null)
return "No";
bool inValue = (bool)value;
string outValue = inValue ? "Yes" : "No";
return outValue;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
Debugger.Break();
if (value == null)
return 0;
int? outValue;
string inValue = (string)value;
inValue = inValue.Trim();
if (inValue == "Yes")
{
outValue = 1;
}
else
if (inValue == "No")
{
outValue = 0;
}
else
{
return DependencyProperty.UnsetValue;
}
return outValue;
}
}
这是我在 ViewModel 中绑定的属性
private BindableCollection<string> _licensedBitDisplay;
public BindableCollection<string> LicensedBitDisplay
{
get { return _licensedBitDisplay; }
set { SetValueAndNotify(() => LicensedBitDisplay, ref _licensedBitDisplay, value); }
}
和填充下拉列表的代码
LicensedBitDisplay = new BindableCollection<string>();
LicensedBitDisplay.AddRange(new List<string>() { "No", "Yes" });
最后是xaml
<ComboBox Margin="24,3,0,3" Width="162" HorizontalAlignment="left" telerik:StyleManager.Theme="Office_Blue"
ItemsSource="{Binding Path=LicensedBitDisplay}"
SelectedValue="{Binding Path=CurrentEntity.Licensed, Mode=TwoWay,
Converter={StaticResource BooleanToYesNoConverter1},
diag:PresentationTraceSources.TraceLevel=High}" />