Exemplo n.º 1
0
 public static void OnMatchFinderButtonClicked(FacebookForm i_SenderForm)
 {
     if (i_SenderForm != m_MatchFinderForm)
     {
         i_SenderForm.Close();
         new Thread(showMatchFinderForm).Start();
     }
 }
Exemplo n.º 2
0
 public static void OnProfileButtonClicked(FacebookForm i_FacebookForm)
 {
     if (i_FacebookForm != m_ProfileForm)
     {
         i_FacebookForm.Close();
         new Thread(showProfileForm).Start();
     }
 }
Exemplo n.º 3
0
 public static void OnFriendsAndAlbumsButtonClicked(FacebookForm i_SenderForm)
 {
     if (i_SenderForm != m_FriendsAndAlbumsForm)
     {
         i_SenderForm.Close();
         new Thread(showFriendsAndAlbumsForm).Start();
     }
 }