示例#1
0
 private void SetCommButtonText()
 {
     // Set text on comm button to send message or establish comm
     if (company.IsCommEstablished())
     {
         commButtonText.SetText("Send message");
     }
     else
     {
         commButtonText.SetText("Establish communication");
     }
 }