コード例 #1
0
 /// <summary>
 /// View the Keyword ValueList
 /// </summary>
 /// <param name="sender">Sender object that generated the event</param>
 /// <param name="e">Arguments associated with the event</param>
 private void MButtonViewKeyword_Click(object sender, EventArgs e)
 {
     if (this.mComboBoxKeyword.SelectedIndex > -1)
     {
         ValueList     vl  = (ValueList)this.mComboBoxKeyword.SelectedValue;
         ValueListView vlv = new ValueListView();
         vlv.VLV(vl, "Keyword");
     }
 }
コード例 #2
0
 /// <summary>
 /// View the DistributionReference ValueList
 /// </summary>
 /// <param name="sender">Sender object that generated the event</param>
 /// <param name="e">Arguments associated with the event</param>
 private void MButtonViewDistRef_Click(object sender, EventArgs e)
 {
     if (this.mComboBoxDistributionReference.SelectedIndex > -1)
     {
         ValueList     vl  = (ValueList)this.mComboBoxDistributionReference.SelectedValue;
         ValueListView vlv = new ValueListView();
         vlv.VLV(vl, "Distribution Reference");
     }
 }
コード例 #3
0
 /// <summary>
 /// View the RecipientRole ValueList
 /// </summary>
 /// <param name="sender">Sender object that generated the event</param>
 /// <param name="e">Arguments associated with the event</param>
 private void MButtonViewRecipientRole_Click(object sender, EventArgs e)
 {
     if (this.mComboRecipientRole.SelectedIndex > -1)
     {
         ValueList     vl  = (ValueList)this.mComboRecipientRole.SelectedValue;
         ValueListView vlv = new ValueListView();
         vlv.VLV(vl, "Recipient Role");
     }
 }