我正在尝试在listview
中显示事件,像这样的事件出现在我身上
public class EventRecord
{
public uint EventCode{get;}
public DateTime DateTime{get;}
//....
}
我创建了一个ObservableCollection<EventRecord>
并将我的listView.ItemSource
绑定到它。问题是我想显示一个单独的集合中包含的字符串。像这样
private Dictionary<uint,EventMessages> messages;
private ObservableCollection<EventRecord> log;
messages[log.EventCode].Description <--- How to bind to this
我还需要显示DateTime
和其他一些内容
谢谢