• 大小: 0.80M
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: SQLite  数据库  wpf  sql  

资源简介


资源截图

代码片段和文件信息

using System;
using System.Windows;
using System.Windows.Threading;
using System.IO;
using System.Reflection;
using System.Resources;
namespace OfIllness
{
    /// 
    /// App.xaml 的交互逻辑
    /// 

    public partial class App : Application
    {
        public App()
        {

            AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
            DispatcherUnhandledException += new DispatcherUnhandledExceptionEventHandler(App_DispatcherUnhandledException);
            
        }
        void App_DispatcherUnhandledException(object sender DispatcherUnhandledExceptionEventArgs e)
        {
            ShowException(e.Exception);

        }

        void CurrentDomain_UnhandledEx

评论

共有 条评论