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.
我创建了一个数据表,其中第一列设置为唯一。当我插入新行或修改行时,只要违反唯一约束,就会出现一点“!” 出现在左侧。但是,我希望我的表要么引发事件,要么引发异常。
那可能吗?
谢谢!
我认为您可以使用 RowChanged 事件。在处理程序中,您可以获得 e.Row.HasErrors。这应该足够了。