Hi,
in my code I'm continously updating a map overlay. At some point of time I raise a MessageBox
ArcGIS.Desktop.Framework.Dialogs.MessageBox.Show(
message,
"Kursverfolgung",
MessageBoxButton.OK,
MessageBoxImage.Information,
MessageBoxResult.OK
);
This makes my map window freezing and my overlay position don't gets updated anymore. Maybe it's a problem with WPF MessageBox itself but is there a way to show an into message to the user without blocking the UI?
There is no user interaction necessary. The info pane can disappear by itself let's say after 5 seconds.
Can I create a invisible pane, position it over the map view and make it visible for a short amount of time?
Thanks for any help.