Index: Core/Common/src/Core.Common.Controls.Swf/Core.Common.Controls.Swf.csproj
===================================================================
diff -u -rf69f7ede062499ad74081a7b8afe32085c6d17c0 -r0aa7cf8c9a9eba3df2f5e9f90d81540fe314c36a
--- Core/Common/src/Core.Common.Controls.Swf/Core.Common.Controls.Swf.csproj (.../Core.Common.Controls.Swf.csproj) (revision f69f7ede062499ad74081a7b8afe32085c6d17c0)
+++ Core/Common/src/Core.Common.Controls.Swf/Core.Common.Controls.Swf.csproj (.../Core.Common.Controls.Swf.csproj) (revision 0aa7cf8c9a9eba3df2f5e9f90d81540fe314c36a)
@@ -234,7 +234,9 @@
-
+
+ Form
+
WizardDialog.cs
Index: Core/Plugins/src/Core.Plugins.SharpMapGis.Gui/Forms/MapView.cs
===================================================================
diff -u -r5dc6b11ada2c7d2e4ca14413b1ddca577ba34d08 -r0aa7cf8c9a9eba3df2f5e9f90d81540fe314c36a
--- Core/Plugins/src/Core.Plugins.SharpMapGis.Gui/Forms/MapView.cs (.../MapView.cs) (revision 5dc6b11ada2c7d2e4ca14413b1ddca577ba34d08)
+++ Core/Plugins/src/Core.Plugins.SharpMapGis.Gui/Forms/MapView.cs (.../MapView.cs) (revision 0aa7cf8c9a9eba3df2f5e9f90d81540fe314c36a)
@@ -34,6 +34,7 @@
private bool canSelectItem = true;
private bool settingSelection = false;
private readonly StackTrace constructorStackTrace;
+ private ExportMapToImageMapTool exportMapToImageMapTool;
public MapView()
{
@@ -54,7 +55,8 @@
IsTabControlVisible = false;
// add some tools here, to avoid references to Ringtoets projects in SharpMap
- MapControl.Tools.Add(new ExportMapToImageMapTool());
+ exportMapToImageMapTool = new ExportMapToImageMapTool();
+ MapControl.Tools.Add(exportMapToImageMapTool);
Map = new Map(MapControl.ClientSize)
{
Zoom = 100
@@ -66,6 +68,18 @@
}
}
+ public IWin32Window Owner
+ {
+ get
+ {
+ return exportMapToImageMapTool.Owner;
+ }
+ set
+ {
+ exportMapToImageMapTool.Owner = value;
+ }
+ }
+
public bool IsTabControlVisible
{
get
Index: Core/Plugins/src/Core.Plugins.SharpMapGis.Gui/SharpMapGisGuiPlugin.cs
===================================================================
diff -u -r074232b001ecb5ae110c0b95c05264d4372cbfb5 -r0aa7cf8c9a9eba3df2f5e9f90d81540fe314c36a
--- Core/Plugins/src/Core.Plugins.SharpMapGis.Gui/SharpMapGisGuiPlugin.cs (.../SharpMapGisGuiPlugin.cs) (revision 074232b001ecb5ae110c0b95c05264d4372cbfb5)
+++ Core/Plugins/src/Core.Plugins.SharpMapGis.Gui/SharpMapGisGuiPlugin.cs (.../SharpMapGisGuiPlugin.cs) (revision 0aa7cf8c9a9eba3df2f5e9f90d81540fe314c36a)
@@ -169,7 +169,8 @@
{
yield return new ViewInfo