WPF中ListBox绑定了数据源,如何写转换器

2024-12-14 00:09:39
推荐回答(2个)
回答1:

在这种情况下不用转换器。
你定义下listbox的item属性,在里面添加一个文本显示姓名就行了。示例代码:









PatientName、Position为绑定的类的属性

回答2:

转换器的代码:
public class MyConverter:IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
object result = null;
if (value != null)
{
//转换的相关处理.
var resName = value.toString();

}
return result;
}

public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}