Example #1
0
 private void btnSave_Click(object sender, EventArgs e)
 {
     if (cmbName.Text != "" && txtValue.Text != "")
     {
         GraphAPI gForm = this.Owner as GraphAPI;
         gForm.hdrName  = cmbName.Text;
         gForm.hdrValue = txtValue.Text;
     }
     this.Close();
 }
Example #2
0
 private void btnGraphAPI_Click(object sender, EventArgs e)
 {
     Forms.GraphAPI mGraph = new Forms.GraphAPI(authResult, user.DisplayableId);
     mGraph.Owner = this;
     mGraph.ShowDialog(this);
 }
Example #3
0
 private void btnGraphAPI_Click(object sender, EventArgs e)
 {
     Forms.GraphAPI mGraph = new Forms.GraphAPI(authResult, user.DisplayableId);
     mGraph.Owner = this;
     mGraph.ShowDialog(this);
 }