1

myi 正在尝试从 xml 中读取并将其显示在 Datagrid 中。这是我的数据网格中的代码。

string filePath = "xml 路径";

dsAuthors.ReadXml(filePath);

       dataGrid1.DataSource = dsAuthors;
        dataGrid1.DataMember = "authors";
        dataGrid1.CaptionText = dataGrid1.DataMember;

它工作正常但是..

dataGrid1.CaptionText = dataGrid1.DataMember;

说它不存在?我可以请一些建议谢谢。

4

1 回答 1

0

CaptionText 属性已被微软删除,因为过去没有人使用它。因此,要回答您的问题,该属性不存在。而已。

另见:http ://social.msdn.microsoft.com/forums/en-US/winformsdatacontrols/thread/15fabc1f-51d9-4814-84b0-69c0a055c512/

于 2013-02-22T19:18:50.063 回答