/// <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 ShowSettingsWindow(object sender, EventArgs e)
 {
     var SettingsDialog = new Settings.SettingsDialog();
     var m = SettingsDialog.ShowDialog();
 }