public static void OpenConfigWindow(string displayName, Type targetType)
 {
     try
     {
         var configWindow = new DefaultConfiguratorWindow(displayName, targetType)
         {
             WindowStartupLocation = WindowStartupLocation.CenterScreen,
             Width  = 550,
             Height = 600
         };
         configWindow.Show();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }