Visual Studio: Edit XAML file while debugging
I have a WPF application running in debug mode, and I would like to change the XAML while the application is still running.
I’m not asking for Edit-and-Continue. I don’t mind that I will have to restart the application for the changes to become effective. I just want to be able to make changes to the XAML file while the application is still running, rather than having to (1) remember what I want to change in the UI, (2) close the application, (3) recall what I want to change and make the change.


cheeseballlumpy82 on Mar 05, 2013
Menu => Debug => Detach All
johan-offer on Mar 05, 2013
Right-click the XAML file in Solution Explorer and select Open With…, then choose Source Code (Text) Editor and click Set as Default. You can then edit XAML files while the app is running, without detaching. You’ll need to reopen any XAML files before this works. Tested in VS2012.