Exemple #1
0
 public Form1()
 {
     InitializeComponent();
     Searcher = new AddinSearcher();
     Searcher.Action += new ActionEventHandler(Searcher_Action);
     buttonRefresh_Click(buttonRefresh, new EventArgs());
 }
Exemple #2
0
 public AddinEntry(AddinSearcher parent, string product, string progID, string name, string description)
 {
     Parent = parent;
     Product = product;
     ProgID = progID;
     Name = name;
     Description = description;
 }