Visual Studio 2010 - WPF disable design for personalized management

Is there a way to disable the design view of a separate UserControl - without disabling the design view for other controls?

Some controls do not support design, and in these cases, I would prefer that they simply load the xaml editor.

Is there something I can put in code to disable the design?

+6
visual-studio-2010 wpf xaml visual-studio-designer
source share
1 answer

This question intrigued me. I never use VS constructor. For visual tools, I prefer Blend. I use VS only for editing XAML directly (or code).

If you want to go straight to the XAML editor instead of the designer, here . I do not know how to disable the constructor only for certain types. I suspect this is not possible if you did not write the VS extension.

+2
source share

All Articles