1

我的表中有一个位字段,我需要将其转换为与 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}" />
4

1 回答 1

4

您的转换是向后的,因为绑定源 ( LicensedBitDisplay) 包含字符串。

转换从源转换为目标。Source 是 ViewModel,target 是绑定到它的 UI 控件)。 ConvertBack从目标转换为源。这通常仅在您有一个接受用户输入的控件时有用(例如,用户在文本框中键入“是”并且转换器提供1给 ViewModel 属性)。

为了使这项工作,LicensedBitDisplay应该是一个集合int?。此外,您当前的实现Convert将失败,因为int?无法转换为bool. 相反,您可以使用System.Convert.ToBoolean(它也将自动转换nullfalse)。转换器应仅用于显示,在 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>
于 2013-09-11T20:48:34.223 回答