How can I debug at design time?

前端 未结 2 2087
挽巷
挽巷 2021-02-07 10:11

I created a custom ListView with a UserControl. When the mouse enters the ColumnHeader it should change color at design time.

It works, but I need to debug code. How ca

2条回答
  •  孤街浪徒
    2021-02-07 11:05

    Kelon's answer is correct for Windows Forms, but not for XAML.

    In Visual Studio 2012 and later, the XAML designer runs in its own process outside Visual Studio (devenv.exe). To debug XAML controls at design time you need to attach the second instance of Visual Studio to 'XDesProc.exe' (Xaml Designer Process).

    Detailed instructions:

    • Open Visual Studio with the solution containing your XAML to be debugged
    • Open any XAML file (so XDesProc will start)
    • Make a note of the XDesProc.exe process ID using: menu ToolsAttach to Process, scroll down and note the process ID. (Do not actually attach or Visual Studio will hang.)
    • Close the XAML file
    • Open a second instance of Visual Studio with the same solution
    • Menu ToolsAttach to Process, and attach to the XDesProc process you noted above

    • If you are debugging an exception, menu DebugWindowsException Settings, Common Language Runtime Exceptions → checked

    • Go back to the first instance and re-open the XAML file.

    • The second instance of Visual Studio will break at the exception
    • You can also set breakpoints in the second instance
    • To recompile after you have fixed the bug you must stop debugging
    • To debug again you can save time by doing menu DebugReattach to process, which attaches to the same XDesProc.exe as before.

提交回复
热议问题