我想让我的树视图由 KeyValuePair 构建,并且只将键显示为标题。我用谷歌搜索了这个,找不到任何例子。
到目前为止,我有:
KeyValuePair<string, object> str = new KeyValuePair<string,object> (cores.Keys[i], cores.Values[i]);
TreeViewItem tvi = new TreeViewItem();
tvi.Header = str;
然后在 xaml 中:
<TreeView Name="tvCores" Grid.Column="0" PreviewMouseRightButtonDown="OnPreviewMouseRightButtonDown" DisplayMemberPath="Key"/
>
如果您需要更多信息,请告诉我