public void JoinButtonPressed()
 {
     if (joinButtonState)
     {
         SaveSettings();
         SetupCallApp();
     }
     else
     {
         mApp.ResetCall();
     }
     joinButtonState = !joinButtonState;
 }
示例#2
0
 /// <summary>
 /// Shutdown button pressed. Shuts the network down.
 /// </summary>
 public void ShutdownButtonPressed()
 {
     mApp.ResetCall();
 }