Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

39
votes
5answers
18k views

WPF TemplateBinding vs RelativeSource TemplatedParent

What is the difference between these 2 bindings: <ControlTemplate TargetType="{x:Type Button}"> <Border BorderBrush="{TemplateBinding Property=Background}"> <ContentPresenter ...
6
votes
4answers
1k 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 ...
6
votes
2answers
2k 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 ...
5
votes
2answers
93 views

Binding with StringFormat on a custom control

I'm trying to use a custom control in a WPF app, and I have some problem using a StringFormat binding. The problem is easy to reproduce. First, let's create a WPF application and call it ...
4
votes
3answers
476 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 ...
4
votes
1answer
1k views

How to use template binding inside data template in custom control (Silverlight)

I am trying to create control which will take ItemsSource and InnerTemplate and will show all the items wrapped in CheckBoxes. The control has 2 dependency properties: public static readonly ...
4
votes
2answers
3k views

TemplateBindings in Custom Controls

I'm just mucking about with custom controls in silverlight and for the life of me i can't get the TemplateBindings to work. Can someone give this reduced version a once over to see if I'm missing ...
3
votes
1answer
2k views

TemplateBinding with Converter - what is wrong?

I'm creating a game desk. I wanted to specify field size (one field is a square) as a attached property and with this data set value of ViewPort which would draw 2x2 matrix (and tile mode would do the ...
3
votes
2answers
355 views

WPF: TemplateBinding to StrokeThickness of Shape does not work?

Looks like the following Ellipse in ControlTemplate does not get the BorderThickness, but why? <Window.Resources> <ControlTemplate x:Key="EllipseControlTemplate" TargetType="{x:Type ...
3
votes
0answers
367 views

TemplateBinding “Foreground” doesn't work

I have a listbox the item template of which is a listbox. I am trying to set the "Foreground" property of the internal listbox to be the same as that of the main listbox. This is failing. Following is ...
2
votes
2answers
253 views

TemplateBinding from a Style DataTrigger In ControlTemplate

In the following XAML I'm using a Rectangle with a Border as the Template for a ToggleButton. I want the BorderBrush to be a different colour to reflect the changing value of ToggleButton.IsChecked. ...
2
votes
1answer
116 views

Limitations of TemplateBinding

A custom control (written under VS 2008) has a SelectedColor Dependency Property and its Control Template contains the following: ... <Rectangle> <Rectangle.Fill> ...
2
votes
2answers
285 views

Can't bind IsChecked on RadioButton with custom ControlTemplate

I have been using a custom RadioButton control with a ToggleButton as the control template. Here's what the xaml looks like: <RadioButton.Template> <ControlTemplate> ...
2
votes
2answers
513 views

WPF DataTemplate property set at Content

New to WPF and have Tabs and in each tab the content is presented in a curved corner panel/window/whateveryouwannacallit. I wasn't sure how to do this ( Style, ControlTemplate ) but decided to go the ...
2
votes
1answer
447 views

Cannot convert the value in attribute '[attr]' to object of type 'System.Windows.TemplateBindingExtension'

I get this error when I define my attached dependency properties in a class outside the class hierarchy and set the owner to a common parent class. Attached dependency property in WindowBase class ...
2
votes
4answers
1k 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 ...
2
votes
1answer
564 views

WPF - styling a lookless control: How to access dependecy properties of control from second level of ControlTemplates?

I am extending the ItemsControl (class EnhancedItemsControl : ItemsControl), because I want to add several dependecy properties to it - like AlternativeContent which will be displayed when there are ...
2
votes
1answer
630 views

Is It Possible to Use TemplateBinding in a Storyboard in Silverlight?

I'm building a custom control in Silverlight and I want one of the fields to animate to the value of a DependencyProperty when that property is changed. More specifically, I have particular item in my ...
1
vote
1answer
43 views

TemplateBinding does not work for SelectedItem in custom control extending ComboBox

We've created a custom ComboBox control that has a button to clear the ComboBox's selection: <Style TargetType="{x:Type local:ClearableComboBox}"> <Setter Property="SelectedItem" /> ...
1
vote
1answer
157 views

WPF Nested binding in a controltemplate

I have successfully created a textbox that displays / collapses an error message depending upon a validation rule set in its model / vm. The code goes like this for the email for ex.: ...
1
vote
1answer
359 views

Setting Border background with a template binding

Value="{TemplateBinding HeaderColor}"I've created my own control, and I'm wondering if I can bind a Border.Background to a template property. Currently i'm setting it with a StaticResource like the ...
1
vote
1answer
307 views

TemplateBinding to RowDefinition.Height ignored in ContentControl

Description: I have a custom content control and I am trying to enable some external settings via dependency properties. Basically it's a decorator panel with two grid rows, upper one is the header, ...
1
vote
1answer
228 views

Change Path properties via template binding

I have a control template that contains a path (besides other controls). The path should be resized when the control is resized. The points and the size that describe the path can be expressed as ...
1
vote
1answer
743 views

TemplateBinding in a nested template in Silverlight 4

I've implemented a control, CommandTextBox, which I want to be a text box with a button right next to it (so it almost appears within the text box). The button should be an image which I can bind to ...
1
vote
3answers
166 views

Help trying to use a ToggleButton in a dictionnary

I am very new to WPF and I am facing a problem where I need help: My environment is .net 4, VS2010, win 7 I want to define a styled toggle button that I will use from a User Control. When I declare ...
1
vote
1answer
464 views

Using TemplateBinding in ObjectAnimationUsingKeyFrames

I try to set the background color of a control when mouse is over it. I try to do it via the visual state manager. I was able to get the following code running: <ObjectAnimationUsingKeyFrames ...
1
vote
2answers
3k views

Can my WPF Style Setter use a TemplateBinding?

I'm trying to do something like this... <Style x:Key="MyBorderStyle" TargetType="Border"> <Setter Property="BorderBrush" Value="{StaticResource MyBorderBrush}" ...
1
vote
1answer
2k views

In WPF, why does the Rectangle.Fill property not seem to work when using a TemplateBinding?

I can't figure out why this XAML code does not work. When using a TemplateBinding (see below), the background color is not set. But when I use a normal color string (i.e. "Red"), it works fine. ...
1
vote
3answers
730 views

How can I change the font size of a label in my ControlTemplate

In my WPF ListBox, I have a style with a ControlTemplate for a ListBoxItem. Inside that ControlTemplate I have a label defined. Based on some details, I need to change the font size of the label. ...
1
vote
3answers
441 views

How do I update a label that is in a ControlTemplate of a Toolbar in WPF?

I have a ControlTemplate that is made up of a ToolBarTray and a ToolBar. In my ToolBar, I have several buttons and then a label. I want to be able to update the label in my toolbar with something ...
0
votes
1answer
86 views

TemplateBinding DataContext in silverlight CustomControl

I have a rather interesting case with ComboBox control - CustomComboBox; In the style of this ComboBox, Popup contains one custom control that requests a DataContext; <ctrl:CustomGrid ...
0
votes
0answers
94 views

Silverlight: How to toggle icon on mouse hover?

In Silverlight 4/XAML I have multiple icons defined, each one in a black/white and a colored version (note that in general you cannot derive the b/w version from the colored version, so I definitely ...
0
votes
1answer
60 views

How to Bind a specific ObservableCollection item's property to a CustomControl's ControlTemplate

I have a custom control with an observable-collection of "states", sort of like a multiple-state-button. Only the necessary code is here to avoid confusion: public class MyMultiStateBtn : ...
0
votes
0answers
89 views

WPF TemplateBinding on attached properties

I would like to understand this kind of TemplateBinding use: Background="{TemplateBinding Panel.Background}" This is used line inside of the definition of a ControlTemplate redefining the ...
0
votes
2answers
112 views

TemplateBinding in generic.xaml and repainting on Property changed

I've a custom control. In the custom controls, there are several elements. One of those element should have a special height value. This height I'm talking about is CanvasThickness in the following ...
0
votes
2answers
289 views

TemplateBinding does not work in certain cases(when using TranslateTransform)

This is how I reproduced this problem in WPF: Create a custom control: public class TestCustomControl : Control { static TestCustomControl() { ...
0
votes
0answers
22 views

Can I create a style with a property that can be bound/overwritten?

Badly phrased question maybe... But I have a style created, modified from the default found on msdn. <Style TargetType="sdk:DataGridRow" x:Key="DataGridRowErrorStyle"> <Setter ...
0
votes
0answers
105 views

wpf Nested custom control gets TemplateBindingExpression while binding

I have a custom control "MyButton" and it contains another custom control "MyTextBlock" MyTextBlock contains a DependencyProperty: public object TextBlockContent { set { ...
0
votes
1answer
145 views

Binding value on custom control with TemplateBinding

I have created a custom control A, with ControlTemplate section, where: <myOtherControl DataContext="{TemplateBinding ItemsSource}"/>, and MyOtherControl has: <DataGrid ...
0
votes
1answer
342 views

TemplateBinding + SIlverlight 4 + Default Style

I have written a content control with an Int Dependency Property in the content Control. The Control has a default style which contains the Template for the control. Now the problem i face is, No ...
0
votes
2answers
1k views

Update source with TemplateBinding

I use this style for all my labels <Style TargetType="Label" x:Key="LabelStyle"> <Setter Property="Template"> <Setter.Value> ...
0
votes
0answers
199 views

CollectionViewSource in CodeBehind with Template Bindings

I'm creating a lookless control based on Selector in WPF with a Dependency Property named ListItems. When SelectedItems is changed, I do: // CollectionViewSource ListItems = ... ListItems.Source = ...
0
votes
1answer
2k views

Silverlight 3 ProgressBar Template

I am trying to retemplate a Silverlight3 progress bar, to show the "Value" in a TextBlock within the ProgressBarIndicator, and the "Maximum" in another textblock in the ProgressBarTrack. I think that ...
0
votes
2answers
1k views

Using {TemplateBinding Content} withTextBlock in ControlTemplate

Basically I have a button that I built a control template for. It is currently working but VS 2010 complains about the following line of code in my control template <TextBlock ...
0
votes
2answers
577 views

Binding to Transforms in a ControlTemplate

I'm trying to create a custom control in Silverlight that dynamically scales an element in it's ControlTemplate. First attempt of the ControlTemplate looks something like this: <ControlTemplate ...
0
votes
1answer
964 views

How to TemplateBind to BorderThickness.Top (or Bottom or Left or Right)?

I wonder if it is possible to bind a structure element like BorderThickness.Top to TemplatedParent's corresponding property. I have tried <Border Margin="0" Padding="{TemplateBinding Padding}" ...
0
votes
2answers
237 views

TemplateBinding not working with .NET framework objects

I am new to using the ControlTemplate. I am writing my first control but I am having (what seems to me) a very strange issue. Any dependency properties that I make TemplateBinding to work, but any ...