POST
|
Thanks for the reply I was checking the code but its for convert to Microsoft.Spatial and i dont know what more to do to convert to System.Data.Entity.Spatial.DbGeography. Please help me
... View more
09-08-2022
04:20 PM
|
0
|
1
|
697
|
POST
|
Hello I need to convert a polygon geometry to System.Data.Entity.Spatial.DbGeography , I have been trying to do with something like that StringBuilder text = new StringBuilder();
string firstPoint = string.Empty, textToAppend;
var parts = ((Polygon)(geometry)).Parts;
for (int i = 0; i < parts[0].Points.Count; i++)
{
var normalizedPoint = GeometryEngine.NormalizeCentralMeridian(parts[0].Points[i]);
var projectedCenter = GeometryEngine.Project(normalizedPoint, SpatialReferences.Wgs84) as MapPoint;
textToAppend = $"{projectedCenter.X} {projectedCenter.Y}";
textToAppend= textToAppend.Replace(',', '.');
textToAppend = $"{textToAppend},";
text.Append(textToAppend);
if (string.IsNullOrWhiteSpace(firstPoint))
{
firstPoint = $"{projectedCenter.X} {projectedCenter.Y}";
firstPoint = firstPoint.Replace(',', '.');
}
}
text.Append(firstPoint);
var dbGeography=DbGeography.PolygonFromText($"POLYGON(({text}))", 4326); And it works, but when i saved it to a SQL database on a column of type Geography, it does not work correctly. What is the correct way to achieve this? Thanks
... View more
09-08-2022
02:17 PM
|
0
|
3
|
738
|
POST
|
Hi We have a WPF (Net Framework) application that works fine, so i am updating Esri Arcgis Runtime from version 100.5 to the latest one (100.10), but sometimes, when i open the application, it does not show the map, i mean, i can't see layers, but if i do a debug, everything works fine, there is not a load error o an exception. I use Esri.ArcGISRuntime.Toolkit LayerLegend to show a list of the avalaible layers and i can see all of them there, but the MapView does not show anything. Can anybody please help me?
... View more
03-24-2021
02:27 PM
|
0
|
1
|
743
|
POST
|
Hi I am using SDK .NEt 100.4 and i have a MMPK file created with the layers in a specific order, by example: Layer 1 Layer 2 Layer 3 This is because i need to show the layers in that specific order and dont overlap , but when i load the package throught MobileMapPackage.OpenAsync(url) order is reversed: Layer 3 Layer 2 Layer 1 How can I keep the original order? Thanks!
... View more
03-15-2019
06:32 AM
|
0
|
1
|
548
|
POST
|
Hi Bradley Brasel I didnt find any issues with DevExpress library, but i think that the problem was a out of memory issue. I had a process running in 32 bits architecture and when it was using 1 - 1.2 GB of memory ram the application crash. My workaround was implement a multi-process architecture and insolate all related with Arcgis runtime, so if something fails, the main process remaing active.
... View more
02-12-2019
04:41 AM
|
0
|
1
|
8233
|
POST
|
Hi In a WPF application i need to add a panel inside the map with the current coordinate based on mouse position and is refreshing every time that the mouse is moved something like this: What can i do? Thanks
... View more
10-24-2018
12:09 PM
|
0
|
2
|
1471
|
POST
|
Hi - Signing into Windows after it was locked? - Changing the Windows scale/resolution/contrast? - Entering/leaving a remote desktop session? - Moving the application between two monitors (perhaps with different resolutions)? - Disconnecting an external monitor? No - The application was minimized and idle for some time? Yes, our application needs to be running for long time, but also happen when the application has been open for a short time - The application has multiple map views that are being repeatedly being created / destroyed? Yes, we have a principal mapview, a overview map and in two other screen we can open instances of the map view I forget to say that our application is a process 32 bits and we use another third party library: DevExpress, we are using MobileMapPackage, I noticed that when i open and close the mapview several times this causes increasing of memory consumption and eventually a SystemOutOfMemory is throw (another issue) i tried to put the user control in a static field to avoid to create and destroy mapview, but when i open and close several times i have this error and the app is completly freeze Esri.ArcGISRuntime.ArcGISRuntimeException HResult=0x80131500 Message=Internal error exception. Buffer_loader_cache::map_buffer ERROR, cannot create staging resource!: c:\daily_r\rtc\runtimecore\c_api\src\mapping\map_view\geo_view.cpp(205) : error : Exception caught in RT_GeoView_pulse Source=Esri.ArcGISRuntime StackTrace: at Esri.ArcGISRuntime.ArcGISException.HandleCoreError(CoreError error, Boolean throwException) at RuntimeCoreNet.GeneratedWrappers.Interop.CheckError(IntPtr errorHandle, Boolean throwOnFailure, GCHandle wrapperHandle) at RuntimeCoreNet.GeneratedWrappers.CoreGeoView.Pulse() at Esri.ArcGISRuntime.UI.Controls.GeoView.Esri.ArcGISRuntime.Internal.IDxSurfaceSource.Pulse() at Esri.ArcGISRuntime.Internal.HostedSurfaceElement.CompositionTarget_Rendering(Object sender, EventArgs e) at System.Windows.WeakEventManager.ListenerList`1.DeliverEvent(Object sender, EventArgs e, Type managerType) at System.Windows.WeakEventManager.DeliverEvent(Object sender, EventArgs args) at Esri.ArcGISRuntime.Internal.RenderingWeakEventManager.OnCompositeTargetRendering(Object sender, EventArgs e) at System.Windows.Media.MediaContext.RenderMessageHandlerCore(Object resizedCompositionTarget) at System.Windows.Media.MediaContext.AnimatedRenderMessageHandler(Object resizedCompositionTarget) at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs) at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler) at System.Windows.Threading.DispatcherOperation.InvokeImpl() at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state) at MS.Internal.CulturePreservingExecutionContext.CallbackWrapper(Object obj) at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at MS.Internal.CulturePreservingExecutionContext.Run(CulturePreservingExecutionContext executionContext, ContextCallback callback, Object state) at System.Windows.Threading.DispatcherOperation.Invoke() at System.Windows.Threading.Dispatcher.ProcessQueue() at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled) at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled) at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o) at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs) at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler) at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs) at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam) at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg) at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame) at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame) at Esri.ArcGISRuntime.Internal.HostedSurfaceElement.SurfaceBackgroundUiWorker(Object arg) at System.Threading.ThreadHelper.ThreadStart_Context(Object state) at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.ThreadHelper.ThreadStart(Object obj)
... View more
10-24-2018
06:07 AM
|
0
|
3
|
8234
|
POST
|
Hi In our application we are experiencing crashes, freezes and this is complety random. i previously opened a thread to ask for help for this problem (Map crash runtime .Net 100.3 ), i was using runtime 100.3 and i hoped that in the next realese this would be fixed. I updated to runtime 100.4 but it still happens. i have two dump files that i could got when the application crashed In Windows Event viewer i can see the following entry when the map crash. I updated the graphics drivers and i check that it support direct x. I am running the application in windows 10 but it also happen in windows 7 Faulting application name: app.exe, version: 7.3.0.22, time stamp: 0x5bcdbb4c Faulting module name: ucrtbase.dll, version: 10.0.17134.191, time stamp: 0xcb91c047 Exception code: 0xc0000409 Fault offset: 0x000a253b Faulting process id: 0x3a94 Faulting application start time: 0x01d46a0ab829c273 When the application freezes, i can see the following in the ouput windows in visual studio Excepción no controlada: Esri.ArcGISRuntime.ArcGISRuntimeException: DirectX failure CreateQuery code = 0x887a0005: c:\daily_r\rtc\runtimecore\c_api\src\mapping\map_view\geo_view.cpp(203) : error : Exception caught in RT_GeoView_pulse en Esri.ArcGISRuntime.ArcGISException.HandleCoreError(CoreError error, Boolean throwException) en RuntimeCoreNet.GeneratedWrappers.Interop.CheckError(IntPtr errorHandle, Boolean throwOnFailure, GCHandle wrapperHandle) en RuntimeCoreNet.GeneratedWrappers.CoreGeoView.Pulse() en Esri.ArcGISRuntime.UI.Controls.GeoView.Esri.ArcGISRuntime.Internal.IDxSurfaceSource.Pulse() en Esri.ArcGISRuntime.Internal.HostedSurfaceElement.CompositionTarget_Rendering(Object sender, EventArgs e) en System.Windows.WeakEventManager.ListenerList`1.DeliverEvent(Object sender, EventArgs e, Type managerType) en System.Windows.WeakEventManager.DeliverEvent(Object sender, EventArgs args) en Esri.ArcGISRuntime.Internal.RenderingWeakEventManager.OnCompositeTargetRendering(Object sender, EventArgs e) en System.Windows.Media.MediaContext.RenderMessageHandlerCore(Object resizedCompositionTarget) en System.Windows.Media.MediaContext.AnimatedRenderMessageHandler(Object resizedCompositionTarget) en System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs) en System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler) en System.Windows.Threading.DispatcherOperation.InvokeImpl() en System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state) en MS.Internal.CulturePreservingExecutionContext.CallbackWrapper(Object obj) en System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) en System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) en System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) en MS.Internal.CulturePreservingExecutionContext.Run(CulturePreservingExecutionContext executionContext, ContextCallback callback, Object state) en System.Windows.Threading.DispatcherOperation.Invoke() en System.Windows.Threading.Dispatcher.ProcessQueue() en System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled) en MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled) en MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o) en System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs) en System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler) en System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs) en MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam) en MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg) en System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame) en System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame) en Esri.ArcGISRuntime.Internal.HostedSurfaceElement.SurfaceBackgroundUiWorker(Object arg) en System.Threading.ThreadHelper.ThreadStart_Context(Object state) en System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) en System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) en System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) en System.Threading.ThreadHelper.ThreadStart(Object obj) The dump files can be found here Microsoft OneDrive - Access files anywhere. Create docs with free Office Online. Please help me Thanks
... View more
10-23-2018
05:59 AM
|
0
|
10
|
10021
|
POST
|
I have some similar problem, but until now i don't have a fix or workaround Map crash runtime .Net 100.3
... View more
10-05-2018
06:45 AM
|
0
|
0
|
2092
|
POST
|
I am using MobileMapPackage to load the Map.
I am receiving another error message in the output window:
An unhandled exception of type 'Esri.ArcGISRuntime.ArcGISRuntimeException' occurred in Esri.ArcGISRuntime.dll Internal error exception. Buffer_loader_cache::map_buffer ERROR, cannot create staging resource!: c:\daily_r\rtc\runtimecore\c_api\src\mapping\map_view\geo_view.cpp(203) : error : Exception caught in RT_GeoView_pulse Excepción no controlada: Esri.ArcGISRuntime.ArcGISRuntimeException: Internal error exception. Buffer_loader_cache::map_buffer ERROR, cannot create staging resource!: c:\daily_r\rtc\runtimecore\c_api\src\mapping\map_view\geo_view.cpp(203) : error : Exception caught in RT_GeoView_pulse en Esri.ArcGISRuntime.ArcGISException.HandleCoreError(CoreError error, Boolean throwException) en RuntimeCoreNet.GeneratedWrappers.Interop.CheckError(IntPtr errorHandle, Boolean throwOnFailure, GCHandle wrapperHandle) en RuntimeCoreNet.GeneratedWrappers.CoreGeoView.Pulse() en Esri.ArcGISRuntime.UI.Controls.GeoView.Esri.ArcGISRuntime.Internal.IDxSurfaceSource.Pulse() en Esri.ArcGISRuntime.Internal.HostedSurfaceElement.CompositionTarget_Rendering(Object sender, EventArgs e) en System.Windows.WeakEventManager.ListenerList`1.DeliverEvent(Object sender, EventArgs e, Type managerType) en System.Windows.WeakEventManager.DeliverEvent(Object sender, EventArgs args) en Esri.ArcGISRuntime.Internal.RenderingWeakEventManager.OnCompositeTargetRendering(Object sender, EventArgs e) en System.Windows.Media.MediaContext.RenderMessageHandlerCore(Object resizedCompositionTarget) en System.Windows.Media.MediaContext.AnimatedRenderMessageHandler(Object resizedCompositionTarget) en System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs) en System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler) en System.Windows.Threading.DispatcherOperation.InvokeImpl() en System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state) en MS.Internal.CulturePreservingExecutionContext.CallbackWrapper(Object obj) en System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) en System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) en System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) en MS.Internal.CulturePreservingExecutionContext.Run(CulturePreservingExecutionContext executionContext, ContextCallback callback, Object state) en System.Windows.Threading.DispatcherOperation.Invoke() en System.Windows.Threading.Dispatcher.ProcessQueue() en System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled) en MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled) en MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o) en System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs) en System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler) en System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs) en MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam) en MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg) en System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame) en System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame) en Esri.ArcGISRuntime.Internal.HostedSurfaceElement.SurfaceBackgroundUiWorker(Object arg) en System.Threading.ThreadHelper.ThreadStart_Context(Object state) en System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) en System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) en System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) en System.Threading.ThreadHelper.ThreadStart(Object obj)
... View more
08-21-2018
01:08 PM
|
0
|
0
|
2888
|
POST
|
Hi Greg - Most of the time i use MapView with GraphicsOverlays, SketchEditor, IdentifyLayers and graphics, Route Taks and Query Feature tables - When the crash happen sometimes i am switching windows or navigating througth the map - Configuration is different in the machines when it happens -App crash is random and there is not a frequency of time between it i appreciate your help EDIT in windows event viewer i could see: Nombre de la aplicación con errores: MyMapApp.exe, versión: 7.3.0.0, marca de tiempo: 0x5b75d467 Nombre del módulo con errores: ucrtbase.dll, versión: 10.0.16299.248, marca de tiempo: 0xdcc3eab0 Código de excepción: 0xc0000409 Desplazamiento de errores: 0x0009348b Identificador del proceso con errores: 0x6ec Hora de inicio de la aplicación con errores: 0x01d43599c060654c Ruta de acceso de la aplicación con errores: E:\MapApp.exe Ruta de acceso del módulo con errores: C:\WINDOWS\System32\ucrtbase.dll Identificador del informe: 13bee75c-d528-4061-baa4-6445483004eb Nombre completo del paquete con errores: Identificador de aplicación relativa del paquete con errores:
... View more
08-16-2018
02:15 PM
|
0
|
0
|
2888
|
POST
|
Hi I have a map app with SDK runtime .Net 100.3 and In some ocassions map freeze the complete application or sometimes crash and close the app. This happen in diferent computers and this behavior is random and the only information that i have is in the output window of visual studio as follows : Excepción no controlada: Esri.ArcGISRuntime.ArcGISRuntimeException: DirectX failure CreateQuery code = 0x887a0005: c:\daily_r\rtc\runtimecore\c_api\src\mapping\map_view\geo_view.cpp(203) : error : Exception caught in RT_GeoView_pulse en Esri.ArcGISRuntime.ArcGISException.HandleCoreError(CoreError error, Boolean throwException) en RuntimeCoreNet.GeneratedWrappers.Interop.CheckError(IntPtr errorHandle, Boolean throwOnFailure, GCHandle wrapperHandle) en RuntimeCoreNet.GeneratedWrappers.CoreGeoView.Pulse() en Esri.ArcGISRuntime.UI.Controls.GeoView.Esri.ArcGISRuntime.Internal.IDxSurfaceSource.Pulse() en Esri.ArcGISRuntime.Internal.HostedSurfaceElement.CompositionTarget_Rendering(Object sender, EventArgs e) en System.Windows.WeakEventManager.ListenerList`1.DeliverEvent(Object sender, EventArgs e, Type managerType) en System.Windows.WeakEventManager.DeliverEvent(Object sender, EventArgs args) en Esri.ArcGISRuntime.Internal.RenderingWeakEventManager.OnCompositeTargetRendering(Object sender, EventArgs e) en System.Windows.Media.MediaContext.RenderMessageHandlerCore(Object resizedCompositionTarget) en System.Windows.Media.MediaContext.AnimatedRenderMessageHandler(Object resizedCompositionTarget) en System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs) en System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler) en System.Windows.Threading.DispatcherOperation.InvokeImpl() en System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state) en MS.Internal.CulturePreservingExecutionContext.CallbackWrapper(Object obj) en System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) en System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) en System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) en MS.Internal.CulturePreservingExecutionContext.Run(CulturePreservingExecutionContext executionContext, ContextCallback callback, Object state) en System.Windows.Threading.DispatcherOperation.Invoke() en System.Windows.Threading.Dispatcher.ProcessQueue() en System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled) en MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled) en MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o) en System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs) en System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler) en System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs) en MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam) en MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg) en System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame) en System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame) en Esri.ArcGISRuntime.Internal.HostedSurfaceElement.SurfaceBackgroundUiWorker(Object arg) en System.Threading.ThreadHelper.ThreadStart_Context(Object state) en System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) en System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) en System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) en System.Threading.ThreadHelper.ThreadStart(Object obj) I need help please. what i can do?
... View more
08-16-2018
06:44 AM
|
2
|
12
|
5145
|
Title | Kudos | Posted |
---|---|---|
2 | 08-16-2018 06:44 AM |
Online Status |
Offline
|
Date Last Visited |
09-10-2022
02:50 PM
|