コード例 #1
0
ファイル: Bot.cs プロジェクト: xaustinx/Mist
 void GUI()
 {
     main.Invoke(new MethodInvoker(delegate()
     {
         showFriends = new Friends(this, Bot.DisplayName);
         showFriends.Show();
         showFriends.Activate();
         LoadFriends();
     }));
 }
コード例 #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));
     }));
 }