我有一本要以表格形式显示的字典。最简单的方法是什么?
最好我想显示一个控件,我可以在其中使用 int 值进行排序。我试过 DataGridView 但什么也没显示,我一定是做错了什么......
代码:
mDataGridView.DataSource = mWordCount;
/*Where mWordCount is the Dictionary<string, int> but nothing shows up. (It's a forms-app, not a web-app)*/