C# 开发记录

1.比较两个日期时间相差秒数

        private int DateDiff(DateTime dt1, DateTime dt2)
        {
            return dt1.Subtract(dt2).Seconds;
        }

2. 程序单实例启动

Bool isStart;
Var mutexRunningSingle = new Mutex(true, “程序唯一标识”, out isStart);
If (!isStart)
{
    Current.Shutdown(1);
}

3.主程序需要捕获的异常


static void OnUnhandledException(object sender, UnhandledExceptionEventArgs e){}

static void OnDispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)

//当前应用程序的页面调度异常
Current.DispatcherUnhandledException += OnDispatcherUnhandledException;
//当前应用程序域中的所有未处理的异常
AppDomain.CurrentDomain.UnhandledException += OnUnhandledException;


4.创建通知图标

NotifyIcon _notifyIcon;
Private void OnExit(object sender, EventArgs e){}
private void OnNotifyIconDoubleClicked(object sender, EventArgs e){}


ToolStripButton  btn = new ToolStripButton
            {
                Text = “Exit”
            };
            btn.Click += OnExit;
            ContextMenuStrip contextMenuStrip = new ContextMenuStrip();
            contextMenuStrip.Items.Add(btn);
            _notifyIcon = new NotifyIcon
            {
                Text = “SystemName”,
                Icon = DataShow.Properties.Resources.AppSymbol,
                Visible = true,
                ContextMenuStrip = contextMenuStrip,
            };
            _notifyIcon.DoubleClick += OnNotifyIconDoubleClicked;

5.动态加载程序集

Assembly.LoadFrom(“程序集路径及文件名”);

6. 以默认类型创建实例

Activator.CreateInstance(Type);

7. 在WPF中使用WinForm控件

使用System.Windows.Forms.Integration命名空间下WindowsFormsHost进行包装










评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值