我该如何处理这个异常?

发布于 2024-11-16 17:53:20 字数 199 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初相遇 2024-11-23 17:53:20

我通过向 DataGrid 上的 CellEditEnding 事件添加一种验证来解决此问题。如果验证失败,我将 e.Cancel 设置为 true

这可能不是解决此问题的正确方法,但它具有预期的最终结果。

I've worked around this problem by adding a kind of validation to the CellEditEnding event on the DataGrid. I set e.Cancel to true if validation fails.

It's probably not the right way to go about fixing this problem but it has the desired end result.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文