Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我做了一个用户控件,在我的控件中我有“Title”,图形上“Title”是一个TextBlock,但我希望那些使用mon control的人可以选择更改它,所以,第一个想法是创建一个属性从“DataTemplate”继承的“TitleTemplate”,我只是遵循 wpf 逻辑,但我找不到任何可以帮助我的教程。
我认为,您应该阅读有关TemplateBinding和ContentPresenter的更多信息。我建议你阅读这篇文章:
使用模板自定义 WPF 控件 和 Dr.WPF
经过一番研究,我得出结论,最好的方法是创建一个CustomControl,而不是一个UserControl,因为我的控件不是其他控件的组合,我希望能有所帮助。