Binding to a dependency property of a user control WPF/XAML

前端 未结 4 1056
广开言路
广开言路 2021-02-07 10:08

My app looks like this:


SectionHeader

SectionHeader

Content

SectionHeader

Conte

4条回答
  •  不要未来只要你来
    2021-02-07 10:46

    Have you tried

    Apps="{Binding Apps}" 
    

    instead of

    Apps="{Binding Path=Apps}"
    

    in your top level control?

    Also, do you get any binding errors in the VS output window when you run the app?

提交回复
热议问题