Click here to Skip to main content
15,880,972 members
Articles / Desktop Programming / WPF
Tip/Trick

WPF: TemplateBinding with ControlTemplate

Rate me:
Please Sign up or sign in to vote.
4.84/5 (44 votes)
7 Jun 2013CPOL3 min read 155.3K   20   35
A bit on TemplateBinding and how to use it inside a ControlTemplate.

Introduction

Today I'll try to write a bit on TemplateBinding and how to use it inside a ControlTemplate. TemplateBinding is a type of binding used mainly for template scenarios. Here I am not going to write more on its theoretical aspect as what is TemplateBinding, when to use, blah blah blah, as lot of content is readily available on the net.  So, let's start quickly with the coding part:

First of all, let's create a new project using WPF template and place a button in it as below:

Image 1

Now, what I am going to do is, I am going to replace this content template for this button. So, in order to do this, open up the Button tag and add Button.Template markup tag with a new ControlTemplate as:

Image 2

Now as soon as you will add ControlTemplate tag, you will notice that the content of the button is gone and button is shown as a transparent rectangle. This has happened because here I told WPF to replace the default ControlTemplate with the one which I defined. But at this point, our ControlTemplate is blank, so there is no visualization and we can see only a transparent rectangle.

Now go ahead and customize our ControlTemplate by putting Ellipse inside it as:

Image 3

Now we can see that we get a visualization for a button in the form of ellipse. At this point of time, it works OK, but there are scenarios where this struct breaks down.

For example, let's increase the height of button, from 35 to 105 as:

Image 4

In the above image, you will notice that button height is increased but the ellipse size is still the same, which is a bad UI design. And the reason this is happening is, inside a ControlTemplate, the height of an ellipse is hard coded. So, no matter, whatever height is set at parent (i.e., Button), it will not get inherited to child control (i.e. Ellipse).

So, now we have to fix this problem by using a special type of binding called TemplateBinding inside ControlTemplate. So, instead of hard coding the height, we will use TemplateBinding as shown below:

Image 5

By setting the TargetType property of ControlTemplate, we are telling Ellipse that, any property of Button can be set to ellipse. Now, whatever the height of button will be, it will automatically be the height of ellipse also. Isn't it interesting?

Moving forward, let's do something more interesting with Fill property of ellipse.

Image 6

In the above snippet, I am trying to set the Fill property of an ellipse using TemplateBinding. But now the problem here is, a button doesn't have a Fill property. So, there is no one-to-one mapping for Fill property. Now, what to do?

No need to worry that much because button does have a Background property as:

Image 7

In the above image, you might have noticed that as soon as ellipse's Fill property is set to Background, ellipse becomes transparent as button's background. Now if we set button's Background property to Red, the same will be applied to ellipse too.

Image 8

So, one can understand how much magic we can do with TemplateBinding.
Now, let's work a little bit on code cleanup.

ControlTemplate Inside Resource Dictionary

For better code readability, we will move out our ControlTemplate code and put it inside a resource dictionary as:

Image 9

So, now we can see as earlier that whatever visual property for button is set, all get applied to ellipse as well.

Hope this tip was useful and gave you the basic idea on how to use TemplateBinding.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
AnswerRe: A BUG??? Pin
Shweta Lodha9-Apr-14 4:44
Shweta Lodha9-Apr-14 4:44 
GeneralRe: A BUG??? Pin
Khalid Akbar12-Apr-14 3:04
Khalid Akbar12-Apr-14 3:04 
GeneralRe: A BUG??? Pin
CasaSpider29-Jan-15 2:01
CasaSpider29-Jan-15 2:01 
QuestionThanks Pin
sharmi1728-Mar-14 10:00
sharmi1728-Mar-14 10:00 
AnswerRe: Thanks Pin
Shweta Lodha28-Mar-14 16:27
Shweta Lodha28-Mar-14 16:27 
QuestionThanks A Lot Pin
JLO201212-Nov-13 22:33
JLO201212-Nov-13 22:33 
AnswerRe: Thanks A Lot Pin
Shweta Lodha13-Nov-13 1:18
Shweta Lodha13-Nov-13 1:18 
GeneralGood Article Pin
Jagan Saravanan6-Nov-13 19:17
Jagan Saravanan6-Nov-13 19:17 
Good article to learn, how templatebinding works.
QuestionNot found SetResourceReference in new Groupbox I'm creating in code behind Pin
aripian17-Sep-13 21:37
aripian17-Sep-13 21:37 
AnswerRe: Not found SetResourceReference in new Groupbox I'm creating in code behind Pin
Shweta Lodha25-Sep-13 9:11
Shweta Lodha25-Sep-13 9:11 
GeneralMy vote of 5 Pin
aripian11-Sep-13 15:15
aripian11-Sep-13 15:15 
GeneralRe: My vote of 5 Pin
Shweta Lodha25-Sep-13 9:10
Shweta Lodha25-Sep-13 9:10 
GeneralMy vote of 5 Pin
phamchicong28-Aug-13 17:23
phamchicong28-Aug-13 17:23 
GeneralRe: My vote of 5 Pin
Shweta Lodha29-Aug-13 5:46
Shweta Lodha29-Aug-13 5:46 
GeneralMy vote of 5 Pin
Prashant268215-Jul-13 3:03
Prashant268215-Jul-13 3:03 
GeneralRe: My vote of 5 Pin
Shweta Lodha4-Aug-13 2:19
Shweta Lodha4-Aug-13 2:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.