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

 <ListBoxMargin="0,0,0,24"Name="listBox1"Height="100"HorizontalAlignment="Lef...  <ListBox Margin="0,0,0,24" Name="listBox1" Height="100" HorizontalAlignment="Left" VerticalAlignment="Bottom" Width="241" ItemsSource="{Binding}"  IsSynchronizedWithCurrentItem="True"  />ListBox 绑定了数据源 该怎么写转换器? 显示的数据为姓名 展开
 我来答
ksca00130318
2012-02-21 · TA获得超过319个赞
知道小有建树答主
回答量:185
采纳率:0%
帮助的人:181万
展开全部
在这种情况下不用转换器。
你定义下listbox的item属性,在里面添加一个文本显示姓名就行了。示例代码:
<ItemsControl.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" >
<TextBlock Text="{Binding Path=PatientName}"/>
<TextBlock Text=":"/>
<TextBlock Text="{Binding Path=Position}"/>
</StackPanel>
</DataTemplate>
</ItemsControl.ItemTemplate>
PatientName、Position为绑定的类的属性
245649380
2012-02-24 · 超过11用户采纳过TA的回答
知道答主
回答量:44
采纳率:0%
帮助的人:20万
展开全部
转换器的代码:
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();
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式