I'm having a strange issue that only occurs on some machines: I get an empty MapView.
I've made a .NET Framework 4.8 WPF UserControl library with a WPF user control that hosts a MapView (Esri SDK v100.11) and other standard controls. Then I've created a Windows Forms library with a Windows Forms user control that hosts my WPF control, so I can use it from a Windows Forms application. Then I add the deloyment requeriments listed at https://developers.arcgis.com/net/license-and-deployment/deployment/#runtime-dlls-and-resources-for-wpf-apps to my binaries.
On some machines, the app works perfect. On some other it shows nothin where the MapView should be. I can see all the other controls included in my WPF User Control. The MapView control must be there, since the logs are showing activity on MapView events (MouseLeftButtonDown, MouseMove, MouseLeftButtonUp, MouseLeave, etc) and also on layers (I use an ArcGISTiledLayer and some FeatureLayers, and I can see their loading is working: LoadStatus changes from NotLoaded to Loading, and finally to Loaded. On these machines I can open a browser and load any of the layer URLs with no problem.
The only other way I found to reproduce the same behaviour (blank or empty MapView) is disconnecting from the arcGIS server or using a fake URL for the layer ArcGISTiledLayer.
I'm pretty sure it's not the code, since I'm testing using the same binaries. I'm starting to think it could be they are in different networks, though I have one exception on that (one machine on the same network as the ArcGIS that shows the same behaviour, but it could be because it's a Windows Server).
BTW, all machines are accessed using Windows Remote Desktop.