From 60a76b8631c3976e93e894b9fb07f4f96da1c0fe Mon Sep 17 00:00:00 2001 From: alcexhim Date: Fri, 8 Aug 2014 20:04:59 -0400 Subject: [PATCH] Strangely, setting parent window ShowInTaskbar to false fixes the Open/SaveFileDialog NOT showing in taskbar... --- .../Dialogs/DocumentPropertiesDialog.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/DocumentPropertiesDialog.cs b/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/DocumentPropertiesDialog.cs index 36700483..96a21bee 100644 --- a/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/DocumentPropertiesDialog.cs +++ b/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/DocumentPropertiesDialog.cs @@ -385,6 +385,7 @@ namespace UniversalEditor.UserInterface.WindowsForms.Dialogs dlg.ObjectModel = mvarObjectModel; dlg.DataFormat = mvarDataFormat; dlg.Accessor = mvarAccessor; + dlg.ShowInTaskbar = false; DialogResult result = dlg.ShowDialog();