Пример #1
0
 private void Add_to_list(object sender, BrowserArg e)
 {
     this.isResearch = false;
     foreach (string item in e.list)
     {
         this.Items.Add(item);
     }
     this.put_list();
 }
Пример #2
0
        private void End_Browsing(object sender, BrowserArg e)
        {
            this.isResearch = false;
            this.DebugList.Add("Resultat Browser :\n");
            this.DebugList.Add("\t-----\n");
            foreach (string item in e.list)
            {
                this.DebugList.Add(item + "\n");

            }
            this.DebugList.Add("\t-----\n");
            this.DebugList.Add("End Resultat Browser :\n");
        }