WPF Expander - unable to see internal controls in Visual Studio 2010 development window

I am using Visual Studio 2010 and in a WPF application I am using an extender. The problem is that GroupBox, etc. Inside the Expander are hidden from view in the design window.

Any ideas to show?

thank!

+3
source share
1 answer

Well, this is an old post, so Gregg might already have the answer to this question. But, I would like the message to reply, because it could help others who stumbled upon this problem.

The reason for extending the expander in the advanced design of VS 10 is because it has a user-defined style:

  <Expander Header="Layout"           
            IsExpanded="True" 
            Style="{StaticResource ExpanderStyle_Normal}"> 
  </Expander>  

, :

  • .

/

  • "" contentpresenter .

    < ContentPresenter Visibility = "Visible" /" >

. , , , , .

+1

Source: https://habr.com/ru/post/1733037/


All Articles