示例#1
0
文件: MainForm.cs 项目: dburner/HAM
        public MainForm()
        {
            InitializeComponent();
            IconDownloader.Init();
            Instance = this;

            toolStripProgressBar.Visible = false;
            toolStripStatusLabel.Visible = false;
            programFinder = new ProgramFinder();
            programFinder.StartSearch();
        }
示例#2
0
 private void button1_Click(object sender, EventArgs e)
 {
     ProgramFinder programFinder = new ProgramFinder();
     programFinder.StartSearch();
 }