.
大家好,
我们可以用这样的方式编写自定义控件,以后我们可以对其进行部分重新模板化吗?意味着,在不更换整个ControlTemplate的情况下,我们想要改变/覆盖它的一些外观和感觉?
当然,一种方法是:从generic.xaml复制ControlTemplate代码,部分修改它的外观,并在xaml中使用它,如下所示:
<MyCustomControl> <MyCustomControl.Template> <ControlTemplate> <!-- paste the copied and modified code from generic.xaml here--> </ControlTemplate> </MyCustomControl.Template> <!--other code--> </MyCustomControl>
但是这种方法的问题在于,我们使xaml过于冗长.我真的不喜欢它.我正在寻找一些解决方案,可以帮助我免受污染我正在使用自定义控件的xaml.
在期待中感谢!
.