loadFromRemoteSources enabled="true" // XAML designer // VS 11 beta and 2012 RC loadFromRemoteSources enabled="true" // XAML designer // VS 11 beta and 2012 RC wpf wpf

loadFromRemoteSources enabled="true" // XAML designer // VS 11 beta and 2012 RC


I added the XML to other config files as well (XDesProc.exe.config and XDesProc.exe.appx.config) and it solved the problem for me:

  1. Go to C:\Program Files\Microsoft Visual Studio 11.0\Common7\IDE

  2. Open the files XDesProc.exe.config, devenv.exe.config, and XDesProc.exe.appx.config using a text editor (likely requires administrator mode)

  3. Find </runtime> and before it, add <loadFromRemoteSources enabled="true"/> (If you copy/paste, make sure the doublequotes come through as ASCII or VS will have a fit)

(Source: http://www.sehajpal.com/index.php/2010/10/how-to-solve-loadfromremotesources-error-in-vs-2010/)

(Similar question: WPF designer fails to load in VS 11 beta)


This might be what I've run into on occasion when you paste in files from an unsafe source (the internet). Whatever resources you're loading might be blocked. In Windows Explorer, select Properties from the context menu of these assemblies or files. At the bottom of this dialog, click the button Unblock if available. It should work then.


I was able to solve this using these steps:

  1. Goto this path in your windows explorer :C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE
  2. Open the devenv.exe.config file in notepad or any editor of your choice.
  3. Search for this element closing tag in the file:
  4. Before this element closing tag, Copy and paste the below configuration switch
  5. Save and close the config file

These steps are taken from here:http://www.sehajpal.com/index.php/2010/10/how-to-solve-loadfromremotesources-error-in-vs-2010/