Exemplo n.º 1
0
Arquivo: Bot.cs Projeto: xaustinx/Mist
 void GUI()
 {
     main.Invoke(new MethodInvoker(delegate()
     {
         showFriends = new Friends(this, Bot.DisplayName);
         showFriends.Show();
         showFriends.Activate();
         LoadFriends();
     }));
 }
Exemplo 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));
     }));
 }