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.
我有一个只有两行的数据网格。我希望第二行的单元格可点击,但不能点击第一行。第一行应该是只读的。我的意思是第一行由可点击类型的单元格组成,第二行由不可点击类型的单元格组成。我已经尝试了很多。我没有完成它。
也许您可以尝试放置一个 if 语句来检查它是否是第一行,如果它在您的事件处理程序中返回。
if (dg.CurrentRow == null||dg.CurrentRow == dg.Rows[0]) { return;}