Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有我的客户视图,其中包含包含客户列表的列表框。在列表框中,我想显示 (Firstname + Lastname)(Attributes of Customer) 但不想为列表中的每个客户使用转换器。模型客户类别存在于某个无法更改的地方。
任何想法我该怎么做?
如果您的模型对象是“无法更改的地方”,那么您就不走运了。
转换器是非常可测试的,它只是一个实现 IValueConverter 或 IMultiValueConverter 的类,您的测试类所要做的就是调用Convert()方法并测试返回值。
Convert()
或者,如果您可以跳过测试,您可以在列表项模板的绑定中使用字符串 格式。