RIM.VSNDK_Package.VSNDK_PackagePackage.ShowSettingsWindow C# (CSharp) Method

ShowSettingsWindow() private method

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.
private ShowSettingsWindow ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void ShowSettingsWindow(object sender, EventArgs e)
        {
            var SettingsDialog = new Settings.SettingsDialog();
            var m = SettingsDialog.ShowModal();
        }