Interaction logic for SigningDialog.xaml
Inheritance: DialogWindow
コード例 #1
0
 /// <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();
 }
コード例 #2
0
 /// <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();
 }
コード例 #3
0
ファイル: Browser.cs プロジェクト: djgreastki1/VSPlugin
 public Browser(SigningDialog sd)
 {
     signingDialog = sd;
     InitializeComponent();
 }
コード例 #4
0
ファイル: Browser.cs プロジェクト: blackberry/VSPlugin
 public Browser(SigningDialog sd)
 {
     signingDialog = sd;
     InitializeComponent();
 }