Interaction logic for SigningDialog.xaml
Inheritance: DialogWindow
 /// <summary>
 /// This function is called when the user clicks the menu item that shows the
 /// tool window. See the Initialize method to see how the menu item is associated to
 /// this function using the OleMenuCommandService service and the MenuCommand class.
 /// </summary>
 private void ShowToolWindow(object sender, EventArgs e)
 {
     // Create the dialog instance without Help support.
     var SigningToolDialog = new Signing.SigningDialog();
     // Show the dialog.
     var m = SigningToolDialog.ShowModal();
 }
 /// <summary>
 /// This function is called when the user clicks the menu item that shows the 
 /// tool window. See the Initialize method to see how the menu item is associated to 
 /// this function using the OleMenuCommandService service and the MenuCommand class.
 /// </summary>
 private void ShowToolWindow(object sender, EventArgs e)
 {
     // Create the dialog instance without Help support.
     var SigningToolDialog = new Signing.SigningDialog();
     // Show the dialog.
     var m = SigningToolDialog.ShowDialog();
 }
Esempio n. 3
0
 public Browser(SigningDialog sd)
 {
     signingDialog = sd;
     InitializeComponent();
 }
Esempio n. 4
0
 public Browser(SigningDialog sd)
 {
     signingDialog = sd;
     InitializeComponent();
 }