I have a DataTemplate
I want to reuse. The part I want to factor out is the binding, because it's the only thing that changes. My DataTemplate
looks roughly like this. (There's actually quite a bit more to it, but I've taken out the extraneous stuff.)
<DataTemplate>
<TextBox Text="{Binding Name}" />
</DataTemplate>
How can I reuse this DataTemplate
while simply varying the property to which I'm binding? (Note that if it were as simple as just a TextBox
, I wouldn't worry about it, but the DataTemplate
actually contains a StackPane
l with a number of other elements in it. I want to centralize that in one place, hence the DataTemplate
.)
I've thought about two ways to tackle this problem.
- Create a simple custom control. Reuse that, and don't worry about reusing the
DataTemplate
. - Experiment with some kind of subclass of DataTemplate. (I'm told this is possible.) I'd add a dependency property to it that lets me specify the name of the property to which I want to bind.
Suggestions?