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