程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> m myaddin run-C#程序麻煩高手解釋一下,小弟先謝謝了

m myaddin run-C#程序麻煩高手解釋一下,小弟先謝謝了

編輯:編程綜合問答
C#程序麻煩高手解釋一下,小弟先謝謝了

using System;
using System.Threading;

namespace Example_L2_Basic_Device_Access
{
[System.AddIn.AddIn("S", Version = "4", Publisher = "aaa", Description = "Provides examples on how to communicate with devices. Such as how to call methods of a Standard Resource or read Standard Names.")]
public partial class ISTARSServices : STARS.InternalInterfaces.VSTAItf.ISTARSServices
{
private MyAddin m_MyAddin;

    private void ISTARSServices_Startup(object sender, EventArgs e)
    {
        m_MyAddin = new MyAddin();
        m_MyAddin.Run(this);           
    }

    private void ISTARSServices_Shutdown(object sender, EventArgs e)
    {
        IDisposable dis = m_MyAddin as IDisposable;
        if (dis != null)
            dis.Dispose();
    }

    #region VSTA generated code
    private void InternalStartup()
    {
        this.Startup += new System.EventHandler(ISTARSServices_Startup);
        this.Shutdown += new System.EventHandler(ISTARSServices_Shutdown);
    }
    #endregion
}

}

最佳回答:


不知道“STARS”是什麼。但是從字面理解,service startup是啟動服務運行的邏輯。addin說明這是一個插件。

haikechuang
haikechuang
haikechuang
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved