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.
我有一个包含 ID 和一些其他数据的类(我们称之为对象)。我想在网格视图中显示 ID。当用户单击 gridview 表中的 ID 时,我希望能够添加访问 ID 对象的代码并显示对象的详细信息(它的 ID 和其他存储的数据)。
到目前为止,我已经能够将数据存储在平板电脑中并将其设置为 gridview 源,但我无法扩展点击事件功能。
关于如何在 C# 中实现这一点的任何想法?
一旦页面卸载,用于加载到 GridView 的对象就消失了。内容保留在视图状态中,但对象不存在。您需要做的是使用选定的 ID 再次查询数据。或者将 Grid 链接到 DetailsView,它将查询数据,正如@Wahtever 在评论中建议的那样。