Esempio n. 1
0
File: Bot.cs Progetto: xaustinx/Mist
 void GUI()
 {
     main.Invoke(new MethodInvoker(delegate()
     {
         showFriends = new Friends(this, Bot.DisplayName);
         showFriends.Show();
         showFriends.Activate();
         LoadFriends();
     }));
 }
Esempio n. 2
0
 void GUI()
 {
     main.Invoke(new MethodInvoker(delegate()
     {
         showFriends = new Friends(this, Bot.displayName);
         showFriends.Show();
         showFriends.Activate();
         LoadFriends();
         showFriends.friends_list.SetObjects(ListFriends.Get(MistClient.Properties.Settings.Default.OnlineOnly));
     }));
 }