在这种情况下不用转换器。
你定义下listbox的item属性,在里面添加一个文本显示姓名就行了。示例代码:
PatientName、Position为绑定的类的属性
转换器的代码:
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();
}
}