.
Hello guys,
Can we write our custom controls in such a way that later on we can re-template it partially? Means, without replacing the entire ControlTemplate, we want to change/override some of it's look and feel?
One way, of course, is this : copy the ControlTemplate code from generic.xaml, modify it's look and feel partially, and use it in your xaml, as shown below:
<MyCustomControl>
<MyCustomControl.Template>
<ControlTemplate>
<!-- paste the copied and modified code from generic.xaml here-->
</ControlTemplate>
</MyCustomControl.Template>
<!--other code-->
</MyCustomControl>
But the problem with this approach is that, we make our xaml too verbose. And I seriously don't like it. I'm looking for some solution that may save me from polluting the xaml where I'm using my custom control.
Thanks in anticipation!
.