Tagged Questions
0
votes
1answer
68 views
Avoid ControlTemplate style inheritance
We use the method described in this article to style a "main-menu-like" TabControl. Unfortunately, the style part of the template is also applied to any other TabControl inside a TabItem. We'd like to ...
0
votes
1answer
240 views
How to assign control template to window in Wpf?
I am trying to define a control template that I then want to use for example for modal dialogs. The problem is, that I followed all instructions that I could find on stackoverflow and anywhere else, ...
1
vote
0answers
37 views
Include the templated Control into template?
I want to template a Control and include the Control itself into the template, not only the control's content.
For example, I have a button:
<Grid x:Name="LayoutRoot" Background="White">
...
0
votes
1answer
635 views
Can I bind to use content from the controls nested in the templated parent?
I want to use the System.Windows.Controls.DocumentViewer to view a FixedDocument I created from a PDF file using TallComponents.PDF.Rasterizer. This is working, however, I want to disable or remove ...
3
votes
1answer
478 views
How to convert an Expander's Style in WPF to Silverlight
I have the following xaml style in WPF, and I would like to port it to silverlight.
I am having trouble with the ControlTemplate Triggers that do not exist in silverlight.
I was trying ...
1
vote
1answer
820 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
225 views
StringAnimation on Label
I have a control that indicates the operation mode. Depending on the current mode (automatic, manual or none) it rotates several degrees to the left or right and also changes a label's content. The ...
2
votes
1answer
2k views
Setting MaxWidth of ComboboxItem such that Items width don't exceed ComboboxWidth
Here is how it looks now:
I want the ComboBoxItems to have the same width as the ComboBox. I've overridden the default template of ComboBox and ComboBoxItem.
ComboBoxItems style:
<Style ...
3
votes
1answer
607 views
Why doesn't my Expander expand when I set its template?
I'm trying to change the colour of an Expander's expand button, and it seems the only way to do that is to change its control template, as there is no property to set that.
So, I've used Show Me The ...
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:
...
2
votes
2answers
1k views
WPF ControlTemplates must have TargetType or not?
Do ControlTemplates in WPF require a TargetType? I am restyling some controls, and notice that the comboboxitem, listiviewitem and listboxitem all have the same template:
<ControlTemplate ...
0
votes
2answers
670 views
WPF Template: AdornedElement not showing!
I want to add some elements to a TextBox by using a Template with the extra elements and the original TextBox inserted in the right spot. I'm trying to use the AdornedElementPlaceholder just like you ...
6
votes
3answers
862 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 ...
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 ...
2
votes
3answers
780 views
wpf control template
I have a very simple case that I think would benefit from using templates (but I'm not sure, which is why I'm asking). All the templating examples I've seen either assume more knowledge than I have, ...
