Exemplo n.º 1
0
 protected void SetGithubToken_Clicked(object sender, EventArgs e)
 {
     if (_dialogGithubToken == null)
     {
         _dialogGithubToken = new DialogGithubToken();
     }
     else
     {
         _dialogGithubToken.ActivateFocus();
     }
     _dialogGithubToken.Destroyed += SetGithubToken_Clear;
     _dialogGithubToken.Show();
 }
Exemplo n.º 2
0
 private void SetGithubToken_Clear(object sender, EventArgs e)
 {
     _dialogGithubToken = null;
 }