我的表格中有一个字段,我需要转换为与1或0相关的是或否。 到目前为止,我正在使用这样的转换器,并且它不能正常工作。
由于我绑定了一个组合框,我需要在代码中填充它,但是没有一个字段可以将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}" />
答案 0 :(得分:4)
您的转化是向后的,因为绑定源(LicensedBitDisplay
)包含字符串。
转换从源转换为目标。 Source是ViewModel,target是绑定它的UI控件)。
ConvertBack 从目标转换为源。这通常仅在您有控件接受用户输入时才有用(例如,用户在文本框中键入“是”并且转换器将1
提供给ViewModel属性。)
要完成这项工作,LicensedBitDisplay
应该是int?
的集合。此外,您当前的Convert
实施将失败,因为int?
无法转换为bool
。相反,您可以使用System.Convert.ToBoolean(也会自动将null
转换为false
)。转换器应仅用于显示,在ComboBox的ItemTemplate:
<ComboBox ItemsSource="{Binding Path=LicensedBitDisplay}"
SelectedValue="{Binding Path=CurrentEntity.Licensed}">
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Converter={StaticResource BooleanToYesNoConverter1}}" />
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
就个人而言,我根本不喜欢使用转换器,尤其是选择内容。另一种表达方式是通过触发器:
<ComboBox ItemsSource="{Binding Path=LicensedBitDisplay}"
SelectedValue="{Binding Path=CurrentEntity.Licensed}">
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Name="TextBlock" Text="No" />
<DataTemplate.Triggers>
<DataTrigger Binding="{Binding}" Value="1">
<Setter TargetName="TextBlock" Property="Text" Value="Yes" />
</DataTrigger>
</DataTemplate.Triggers>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>