Visual Studio: Edit XAML file while debugging

Viewed 5658

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.

4 Answers

FYI, I'm able to make changes in VS2017 XAML, and most changes even update the UI live (merged RDs don't seem to work). I can't remember if I had to disable Edit and Continue (been a default step of mine going back to its first appearance, since I've never had luck getting it working like I expect it to). I'm going back in 2015 trying it, and it's not letting me do it (IIRC 2015 and maybe 2013 were the only ones to totally lock the XAML)

Just run it without the debugger attached in the first place.

Debug->Start without debugging...

or Ctrl+F5 (the default key shortcut)

Related