Strangely, setting parent window ShowInTaskbar to false fixes the Open/SaveFileDialog NOT showing in taskbar...

This commit is contained in:
Michael Becker 2014-08-08 20:04:59 -04:00
parent 50a86e602f
commit 60a76b8631

View File

@ -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();