我该如何处理这个异常?
我有一个 WPF 工具包 DataGrid,其 ItemsSource
属性绑定到 DataTable
。 DataTable 对其中一列有唯一约束。如果我尝试在列中输入非唯一数据,则会从我无法访问的代码区域引发异常(这很好),然后应用程序崩溃(这很糟糕)。
如何捕获或以其他方式导致处理此异常,以便应用程序不会崩溃?
I have a WPF Toolkit DataGrid with the ItemsSource
property bound to a DataTable
. The DataTable has a unique constraint on one of the columns. If I try to enter non-unique data into the column an exception is thrown (which is good) from an area of code I can't get to and then the application crashes (which is bad).
How do I catch or otherwise cause this exception to be handled so that the application doesn't crash?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过向
DataGrid
上的CellEditEnding
事件添加一种验证来解决此问题。如果验证失败,我将e.Cancel
设置为true
。这可能不是解决此问题的正确方法,但它具有预期的最终结果。
I've worked around this problem by adding a kind of validation to the
CellEditEnding
event on theDataGrid
. I sete.Cancel
totrue
if validation fails.It's probably not the right way to go about fixing this problem but it has the desired end result.