资源简介

wpf实现的上位机 Modbus协议 ,包括 5格精美信号强度显示-和自定义实现弹窗非系统弹窗。


但程序编译为x86模式请注意。
开发环境为 visual studio 2019
wpf c#
win10 64位  。 

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;
using EMS2.Utility;
using CalibrateUnility;

namespace AirConfig
{
    /// 
    /// App.xaml 的交互逻辑
    /// 

    public partial class App : Application
    {
        private void Application_Startup(object sender StartupEventArgs e)
        {
            InvokeMainThreadHelp.Instance.Init_Set_curentThead_To_MainThreadId();
            LogCaliHelper.GlobalLog.SaveEnable = true;
            LogCaliHelper.GlobalLog.Init_Try_Only_Once();

            ExeStartConfig.Instance.vs_debug = PathHelp.is_path_in_debug();

            var Tier=System.Windows.Media.RenderCapability.Tier;

            
         
        }

        private void Application_Exit(object sender ExitEventArgs e)
        {
            try
            {

                foreach(var item in ConnectDataHold.Instance.ConnectItemList)
                {
                    try
                    {
                        if (item.SerialCurrent != null)
                        {
                            item.SerialCurrent.Close();
                        }
                    }
                    catch(Exception ex)
                    {

                    }
                }

            }catch(Exception ex)
            {

            }
        }
    }
}

评论

共有 条评论