コード例 #1
0
ファイル: Form1.cs プロジェクト: netintellect/NetOffice
 public Form1()
 {
     InitializeComponent();
     Searcher = new AddinSearcher();
     Searcher.Action += new ActionEventHandler(Searcher_Action);
     buttonRefresh_Click(buttonRefresh, new EventArgs());
 }
コード例 #2
0
ファイル: AddinEntry.cs プロジェクト: netintellect/NetOffice
 public AddinEntry(AddinSearcher parent, string product, string progID, string name, string description)
 {
     Parent = parent;
     Product = product;
     ProgID = progID;
     Name = name;
     Description = description;
 }