The ControlTemplate allows you to specify the visual structure of a control. The control author can define the default ControlTemplate and the application author can override the ControlTemplate to reconstruct the visual structure of the control.

learn more… | top users | synonyms

82
votes
4answers
45k views

ResourceDictionary in a separate assembly

I have resource dictionary files (MenuTemplate.xaml, ButtonTemplate.xaml, etc) that I want to use in multiple separate applications. I could add them to the applications' assemblies, but it's better ...
51
votes
5answers
17k views

Difference between Control Template and DataTemplate in WPF

What is difference between a ControlTemplate and a DataTemplate in WPF?
23
votes
6answers
22k views

Silverlight 3: ListBox DataTemplate HorizontalAlignment

I have a ListBox with it's ItemTemplate bound to a DataTemplate. My problem is I cannot get the elements in the template to stretch to the full width of the ListBox. <ListBox x:Name="listPeople" ...
23
votes
2answers
9k views

WPF ControlTemplate vs UserControl

I've recently made an UserControl, which took quite a long time, because I had to work with custom Dependency Properties and so on... Anyways, it was just a bunch of 3 controls: TextBox, Popup with ...
22
votes
5answers
6k views

Control template for existing controls in WPF

How to get existing control's controltemplate in WPF in XAML format(visual tree)? This is to help to create new controltemplate with the help of existing template.
21
votes
3answers
26k views

How to create a WPF Window without a border that can be resized via a grip only?

If you set ResizeMode="CanResizeWithGrip" on a WPF Window then a resize grip is shown in the lower right corner, as below: If you set WindowStyle="None" as well the title bar disappears but the ...
14
votes
1answer
11k views

Access ResourceDictionary items programmatically

I have a Silverlight controls assembly, called "MySilverlightControls". Several folders down into that assembly i have a class which extends a grid column from a third party vendor, let's call it ...
12
votes
1answer
2k views

How can I set a property of a DropShadowEffect via a Trigger in a ControlTemplate?

I have a Button ControlTemplate and I'm trying to modify a DropShadowEffect on a Border by using a Trigger. Here is my Xaml: <Button.Template> <ControlTemplate TargetType="Button"> ...
10
votes
4answers
7k views

Template Binding in Control template

I have the following control template. I wish to set the source property for the image control in the control template using Template Binding. But since this is a control template for button ...
10
votes
1answer
3k views

Replace part of default template in WPF

is there any "best practice" way to replace a part of the default template. The current use case is a treeview. As default, the treeview has this small triangle shapes to expand and collapse. I know ...
9
votes
2answers
2k views

Where can i find the default WPF Control templates?

As per this MSDN link, There is no way to replace only part of the visual tree of a control; to change the visual tree of a control you must set the Template property of the control to ...
8
votes
2answers
9k views

How to access a WPF control located in a ControlTemplate?

Usually, the WPF controls are declared in the .xaml files and not in the code behind (.xaml.cs files). However, sometimes I need to use some of those controls in code behind in order to manipulate ...
8
votes
3answers
5k views

WPF ControlTemplate: How to provide a default value for TemplateBinding?

I am writing a WPF control that subclasses a Button. I then provide a default style in Themes\generic.xaml, that looks like this (simplified): <Style TargetType="{x:Type ...
8
votes
2answers
4k views

In a button's control template, how can I set the color of contained text?

Using Silverlight 4 & WPF 4, I'm trying to create a button style that alters the text color of any contained text when the button is mouseover'd. Since I'm trying to make this compatible with both ...
8
votes
1answer
605 views

In WPF, How to apply style to UserControl in design view?

I usually define style and control template in App.xml under tab. So, while designing the UI, I can see the UI with the style applied in design view in Visual Studio 2008 with .NET3.5. However, in ...
8
votes
2answers
6k views

Elegantly override style of ComboBox's ToggleButton in WPF

I have a question regarding how to elegantly override an arbitrary element deep inside a control's visual tree. I also have attempted to resolve it in a few different ways, but I've run into several ...
7
votes
5answers
4k views

Change checkbox size WPF

I want to make a bigger checkbox in WPF. I've discovered that I need to do a control template, one example of which is found here: http://msdn.microsoft.com/en-us/library/ms752319.aspx If I use ...
7
votes
2answers
2k views

Is it possible to create a WPF tab control template that looks nothing like a tab control?

What I'd like is a control that functions just like the tab control but instead of having the tabs along the top, the items would be displayed in a list box along the side. I imagine it's possible but ...
7
votes
1answer
8k views

WPF set named style elements from code behind?

I have a user control that applies a style to button, with the style containing a ControlTemplate section. Within the ControlTemplate, there are various UI elements such as an Ellipse and a Path. If ...
7
votes
2answers
3k views

In WPF, why doesn't TemplateBinding work where Binding does?

Ok... this is leaving me scratching my head. I have two WPF controls--one's a user control and the other's a custom control. Let's call them UserFoo and CustomFoo. In the control template for ...
6
votes
1answer
7k views

Creating an image+text button with a control template?

I am tired of creating the same image+text button over and over again, and I would like to move the markup to a control template. Here is my problem: I need to provide template bindings to add the ...
6
votes
6answers
1k views

How to make a control with children without declaring the template tag?

I want to create a control just like a Panel. I want my control to accept some controls as childs without typing the template name, just like the Panel, as shown here: <asp:Panel ...
6
votes
1answer
2k views

WPF: Make Whole Border Clickable

I'm trying to implement a button in WPF which shows a menu when you click it. I've got everything working, and the ControlTemplate for the control is shown below. (The control extends ToggleButton). ...
6
votes
2answers
443 views

Create a visualtree off of a control template in code

This is a follow up question to a previous question, wich didn't really get me anywhere: deterministic and asynchronous field validation in WPF Since WPF doesn't support INotifyDataErrorInfo it ...
6
votes
1answer
2k views

MVC 4 Custom controller templates

To start off, I'm using Asp.Net MVC 4, and I've modified my solution to contain the CodeTemplates folder by following this tutorial. (I think my issue might be MVC related?) I've replaced the code ...
6
votes
3answers
199 views

WPF/Silverlight : Templating Custom Control PARTIALLY

. 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 ...
5
votes
2answers
9k views

Specify ControlTemplate for ItemsControl.ItemContainerStyle

The following is similar to what I'm trying to accomplish. However, I get an "Invalid PropertyDescriptor value" error on the Template Setter. I suspect it's because I didn't specify a target type ...
5
votes
3answers
5k views

WPF: How to make a “pushlike” checkbox?

I would like to make a CheckBox that looks exactly like a button. My initial feeble attempt doesn't work at all. <CheckBox x:Name="test"> Testing! <CheckBox.Template> ...
5
votes
1answer
3k views

ItemTemplate does not affect selected item of AutoCompleteBox

I'm using wpf toolkit AutoCompleteBox and I've set the Item template. The problem : the Items in the pop-up list look great but it didn't take effect on the textbox above (the selected item). XAML: ...
5
votes
1answer
2k views

WPF - Events on a ControlTemplate?

Does anyone know why I can't set an event on a control template?? For example, the following line of code will not compile. It does this with any events in a control template. <ControlTemplate ...
5
votes
1answer
3k views

RectangleGeometry with relative dimensions… how?

I'm trying to replicate the nowadays so fashionable "reflex" effect on a controltemplate for buttons I'm creating. The basic idea is to create a rectangle with a gradient fill from white to ...
5
votes
1answer
3k views

WPF DataGrid Control Template

I am trying to customize the WPF 4.0 DataGrid and need a listing of its control template (also the control template for the nested DataGridColumnHeadersPresenter - PART_ColumnHeadersPresenter). I ...
5
votes
3answers
835 views

WPF ControlTemplate partial replace

Suppose we have a very 'XAML long' ControlTemplate for our Control. And we want to add just 1 Button to the Template. MSDN claims that 'There is no way to replace only part of the visual tree of a ...
5
votes
1answer
156 views

WPF ControlTemplate breaks style

The stuff that does work I need to style controls of a certain type that are children of a StackPanel. I'm using: <StackPanel> <StackPanel.Resources> <Style ...
5
votes
1answer
103 views

Closing ContextMenu with Templated MenuItems

I have created a customized Context menu where I changed the appearance of all items. These Items contain different controls like comboboxes and buttons. Now I want the menu to close if a button was ...
5
votes
1answer
768 views

Grouping with drag and drop in WPF DataGrid

I want to add a "drop" area to the existing WPF DataGrid, above the column headers. In that area I want to allow the user to drop column headers that represent the columns to be grouped and to ...
4
votes
7answers
1k views

WPF Border DesiredHeight

The following Microsoft example code contains the following: <Grid> ... <Border Name="Content" ... > ... </Border> </Grid> <ControlTemplate.Triggers> ...
4
votes
4answers
3k views

WPF Custom Control: TemplateBinding to Image

I am creating a WPF custom control, a Button with an Image and Text. I have added two dependency properties to the control, ImagePath and Text, and the control template (in Themes\Generic.xaml) is a ...
4
votes
1answer
3k views

How to Inherit a Control Template

I working on a WPF project where I've over-ridden the CheckBox control for some special operations. That is working correctly. My problem is that the ControlTemplate that was applied from the theme ...
4
votes
1answer
3k views

Adding a custom dependency property to a Control Template in XAML

I have managed to get further with my read only check box after a bit of a break and now have the functionality I want in a reasonably elegant form. The problem is I have used a bit of a hack to make ...
4
votes
2answers
2k views

Setting Focus on a Control Within a ControlTemplate (Part 2)

I'm stumped on what must surely be one of the most common WPF requirements. I've read this question but my implementation of the solution does not work. Here's the markup for the lookless control: ...
4
votes
1answer
1k views

When overriding WPF templates do I have to override each theme's template separately?

I have a requirement to change a very small part of the WPF ComboBox's template. If I take a copy of the existing template for the Luna theme and make the change it all works fine initially. But if ...
4
votes
3answers
3k views

Button control template with resizable circle

I am learning about control templates in WPF and checking out how to replace the button look with custom template styles. I see that to make a circle button, a Ellipse has to be defined with the same ...
4
votes
2answers
846 views

Why is x:key required on ControlTemplate in the ResourceDictionary

Consider the following XAML file: <Window x:Class="ExpressionVisualizer.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
4
votes
2answers
7k views

WPF Trigger animation when Visibility is changed?

Well i have a custom control and when Visibility is changed to Visible I have a Trigger with a enter/exit action but the problem is that when the exit action fires the Visibility is no longer Visible ...
4
votes
1answer
996 views

Is it possible to extend a ControlTemplate the same way you extend a Style in WPF?

So the thing is that I have a main ControlTemplate which defines the most basic stuff for the new button look we're designing. But I want to do 3 other control templates for this button so we can set ...
4
votes
1answer
1k views

Styling a Textblock autogenerated in a ContentPresenter

As I saw, a lot of people ran into this exact problem but I can't understand why my case is not working and it is starting to drive me crazy. Context: I have a DataGrid which is to be colored ...
4
votes
1answer
807 views

Problem with the mouse click on toggleButton in WPF

I made a custom control template that turns a groupbox into an expander (clicking on the header expands/collapses the content of the groupbox). It works fine except that mouse clicks don't always go ...
4
votes
1answer
209 views

Design-time data for ControlTemplate

Providing design-time data for DataContext is easy with use of d:DataContext but what about control properties referenced with {TemplateBinding} or {RelativeSource TemplatedParent} from Style.Template ...
4
votes
1answer
330 views

Override ComboBox Template without theme

I added the ComboBox default ControlTemplate (copied from Blend) to the ResourceDictionary of a UserControl so I could override the ComboBox ControlTemplate. When I added the ControlTemplate I had to ...

1 2 3 4 5 13