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.
0
votes
1answer
284 views
Simple WPF Button Control Template with variable images?
I am still new to WPF (writing my first app with it), but basically I am wanting (or think I want) to create a control of somekind that has 3 images (idle, hover, onClick) but that I can change the ...
0
votes
0answers
134 views
Raising an event from a ControlTemplate defined in a ResourceDictionary
I have a CustomDataGrid called MdtDataGrid. It gets its resources from a ResourceDictionary named MDTDataGridTemplate. In the ControlTemplate I have created a special button that will appear above ...
0
votes
1answer
132 views
ContentControl.Template is null even it is in XAML
Maybe title is confusing you, but the problem is concretely here : I have XAML file which there is ControlTemplate for MyType (inherits from ContentControl). And in that Template i set its DataContext ...
0
votes
1answer
358 views
How to add a new property to a control template/style
I just created an Expander style with a checkbox in the header:
<Style TargetType="{x:Type Expander}" x:Key="MyCheckboxExpander">
<Setter Property="Background" Value="{StaticResource ...
1
vote
2answers
251 views
How to add a left padding to the WPF CheckBox control?
Good day,
I'm in the process of styling a CheckBox control in an WPF application. My goal is to add a padding to the left of the CheckBox 'default' rectangle/border.
By default the padding is only ...
1
vote
1answer
117 views
Prevent Controls in ControlTemplate inheriting global Styles (WPF)
I have this generic style for a custom control with this Template.
<Style TargetType="{x:Type local:MyType}">
<Setter Property="Template">
<Setter.Value>
...
0
votes
1answer
293 views
wpf how to create a custom button
In WPF how do I make a button with a white border with a 5 pixel radius, a dark gray background and white text? It would be nice if it still had all the mouse over and ispressed effect too.
1
vote
1answer
165 views
What is VerticalPanningRoot (C# Metro ScrollBar Template)
I am currently looking at the C# Metro default controltemplate for scrollbar. And in it the scrollbar template, there is this portion that called verticalpanningroot. Do you have any idea which part ...
0
votes
2answers
71 views
Highlight item into ControlTemplate using item's property
I have a user control bound to appropriate ViewModel. I have a GraphLayout (using Graph#) on this control bound to ViewModel.Graph property:
<graph:ProductGraphLayout Graph="{Binding Path=Graph}" ...
2
votes
2answers
399 views
ContentPresenter triggers not working
I have a ContentPresenter inside a ControlTemplate trying to layout a TabItem. I want the foreground color of the TextBlock inside the header to change color when the tab is selected. My template is ...
0
votes
0answers
308 views
How to make `Expander.Header` and `Expander.Content` same width?
I create an Expander template with a ToggleButton template like these:
<Style x:Key="ExpanderDownHeaderStyle" TargetType="{x:Type ToggleButton}">
<Setter Property="Template">
...
0
votes
2answers
394 views
Can't get Text value from Control Template
I have re-styled a textbox using a control template. The styling works well but I cannot now get the text value from the textbox programatically after it has been changed in the textbox.
Here is how ...
0
votes
1answer
119 views
Combobox closes automatically
I have restyled my combobox's template so that the drop down popup appears at the origin of the combobox. Here's how it's done:
<ControlTemplate TargetType="{x:Type ComboBox}">
<Grid>
...
1
vote
2answers
1k views
Control Styles and Templates for Windows 8 Metro-UI
I've met some issue with visual appearance in my C#/XAML Metro-UI application. I want to customize default template. For other type of applications I can take a default styles and controls from msdn ...
0
votes
0answers
114 views
WPF Current Windows Control Template issue
I want to change style of my current application window when I click on button. I want to apply some opacity.
If I set simply setter property opacity to window, it works. here is code:
<Style ...
0
votes
1answer
984 views
WinRT ControlTemplate ItemsPanel
I'm new to WinRT and am trying to create a standard gridview which has a group heading with a number of tiles beneath it. That bit is easy. I'm trying to modify it so that beneath the grid of tiles I ...
0
votes
1answer
507 views
How do I set text wrapping inside a DataGrid in the code-behind?
I'm working in VB.Net w/ WPF and I need to create a DataGrid at run-time (in the code-behind) with the text in each grid cell able to wrap. I've found a lot of examples showing how to do this in the ...
1
vote
1answer
669 views
WPF ControlTemplate Trigger with animation
I have below code which gives me an error: 'meBorder' name cannot be found in the name scope of 'System.Windows.Controls.ControlTemplate'.
<Border Height="20" x:Name="meBorder" ...
0
votes
0answers
155 views
WPG datagrid ControlTemplate issue with ScrollContentPresenter
I have one WPF datagrid question, I am also providing sample project link so you can download it to have better idea.
https://docs.google.com/open?id=0B6vv8VyAGddgX1RBemE3b1FJWUE (File -> Download)
...
0
votes
0answers
241 views
How to override a DataGridColumnHeader Control Template?
I edited the DataGridColumnHeader style in Blend and got the following XAML:
<Style x:Key="DataGridColumnHeaderStyle1" TargetType="{x:Type DataGridColumnHeader}">
<Setter ...
0
votes
1answer
299 views
CommandProperty to button column added dynamically in DataGrid doesn't work
I have a DataGrid bound to an ObservableCollection. I add cols dynamically. Cols struc is 1st col is TextBlock rest all are Buttons. I have certain issues with the buttons :
I want to set Command for ...
4
votes
1answer
208 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 ...
0
votes
2answers
424 views
WPF change dynamicresource in codebehind
The standard RadioButton does not support setting the color of the ellipse. So, I took a radiobutton template from this location as a basis for a custom RadioButton:
RadioButton Styles and Templates
...
0
votes
2answers
102 views
ControlTemplate not showing Grid
I'm trying to create a Button that contains a grid, with rows that contain certain text.
The Button will have two rows, both with different pieces of text. The text that is passed to the ...
1
vote
1answer
264 views
ControlTemplate causeing error “The property 'content' is set more than once”
I'm just trying for the first time to use a ControlTemplate for a button that I want to create.
However, as soon as I put the tag <ControlTemplate> anywhere, it is coming up with an error.
...
1
vote
1answer
77 views
Template property of type ControlTemplate accepts both 'DataTemplate & ControlTemplate' in style?
Why are we able to assign either of DataTemplate or ControlTemplate to the Template property which is of type ControlTemplate in the below markup:-
<Style TargetType="ListBox">
<Setter ...
0
votes
1answer
125 views
Can a silverlight control have both a DataTemplate and a ControlTemplate at once?
I suspect that the ContentControl which have a property of ContentTemplate is either a DataTemplate or a ControlTemplate depending on what each of derived silverlight control has declared it in its ...
1
vote
1answer
136 views
In WPF, can I somehow use TemplateBinding to set the CornerRadius of a templated Button?
I have a Button ControlTemplateemplate that I'd like to reuse, except for the CornerRadius of its Border, which I'd like to get from TemplatedParent so I can specify it in the Button declaration.
...
2
votes
1answer
3k views
WPF - Bind UserControl visibility to a property
I have a ListView bound to ObservableCollection. Data are loaded from the internet and then added to collection. The download takes few seconds and I want to indicate user that the data is loading.
...
1
vote
2answers
796 views
Reuse Trigger Conditions or MultiBinding in WPF
Aim is to Reuse this MultiBinding in Various Places
<MultiTrigger.Conditions>
<Condition Value="True">
<Condition.Binding>
<MultiBinding ...
0
votes
1answer
154 views
Creating Layered Custom Control Templates (WPF 4 / .net 4.0 / C#)
I need some help in trying to recreate the following style:
The sea of red can be ignored because it's just the background the textbox is sitting on.
To create the textbox I use the following ...
0
votes
1answer
108 views
Get and modify the control in the ControlTemplate
I am working with xaml and ControlTemplate as follows:
<ControlTemplate TargetType="{x:Type local:MyControl}" x:Key="MyControlTemplate">
<Grid Background="Transparent" ...
0
votes
3answers
186 views
How to change the control template effectively in WPF?
The subject is that I've defined a customized control bound to a DataContext. And I wished to change the control template dynamically according to the DataContext's specific property values.
...
1
vote
1answer
442 views
Create ControlTemplate with Attached Property
I am essentially trying to create a Button with an image background and border that changes color based off if it is hovered, clicked or default state. I will several of these types of buttons, and I ...
1
vote
1answer
78 views
How to access a child control's property when it is declared in a ControlTemplate?
I have a GridView in which I want to embed a checkbox into the header of one of the columns. I need to check it's IsChecked property in code-behind. However, I cannot access it by name as it is in a ...
0
votes
1answer
3k views
Custom Listbox Scrollbar style Issue
I have the following xaml for WPF ListBox control. I have customized it so suit my UI requirements. However, the scrollbar thumb won't reach the top & bottom of the scrollbar. Also the thumb won't ...
0
votes
0answers
155 views
image not visible in controltemplate
iv'e been trying for quite some time to create an image button ,
iv'e gone threw several examples but non make my image appear .
<ControlTemplate TargetType="{x:Type Button}" ...
0
votes
1answer
1k views
wpf create image button
my control template and style:
<ControlTemplate TargetType="{x:Type Button}" x:Key="ImageButtonTemplate">
<Image Source="..//..//images//ok.png"
...
2
votes
1answer
530 views
How to use TwoWay binding from within a UserControl?
I have my own UserControl, a LabeledTextBox which is the combination of a Label and a..well, TextBox. This Control has two properties: Caption which will be bound to the caption of the Label, and ...
1
vote
1answer
542 views
Turn off ListView border mouseover animations
ListView's default style animates the border colour to light blue when you mouse over the control. Is there any way of turning this off without replacing the entire control template?
I've tried
...
0
votes
2answers
480 views
Databinding to Command in Silverlight Templated Button control
I am trying to create a templated button control with databinding for the Visibility, tooltip, and Command. The Visibility binding works, as does the tooltip, but the Command does not. Another ...
1
vote
1answer
173 views
Popup in MenuItem's Template give IsOpen=“False”
I retrieve ControlTemplate of MenuItem through the following standard procedure:
var resource = FindResource(new ComponentResourceKey(typeof(MenuItem), "TopLevelHeaderTemplateKey"));
var settings = ...
1
vote
1answer
800 views
Default ControlTemplate for Expander
can someone (probably using Blend) provide me a working default ControlTemplate for the WPF Expander? I want to do some slight modification but seems that I cannot find a source for a valid template.
...
0
votes
1answer
331 views
How to get the value from a control in a headertemplate in a gridview?
I have a RadGrid (Telerik)[almost the same as a gridview] with a headertemplate and a itemtemplate:
<telerik:GridTemplateColumn DataField="field" SortExpression="field">
...
-1
votes
2answers
1k views
How apply MinWidth for ListView columns in WPF in control template?
Following the answer to a similar question here, I was able to set the MinWidth on the XAML page.
What I would like to do is accomplish this in the control template for all GridViewColumn's in all ...
0
votes
1answer
368 views
Bind Button Content to DatePicker SelectedDate
I have the following DatePicker Control:
<DatePicker SelectedDate="{Binding DateFor}" Style="{StaticResource ButtonDatePicker}"/>
The ButtonDatePicker style is defined as below:
<Style ...
0
votes
1answer
217 views
How to override base style control template in derived style in WPF?
I have a style for button. That style contains the ControlTemplate for Button. The ControlTemplate contains an Image with name "ImgButton".
I want to make this style as base style for other Buttons ...
0
votes
1answer
683 views
WPF DataGrid ColumnHeader Style: Can't make text bold in ControlTemplate
I am using a DataGrid from the WpfToolkit. I have taken the Style resource dictionary for it and tweaked it a bit. What I am trying to accomplish is to make the header bold when a certain property on ...
0
votes
1answer
311 views
StatusBar at the bottom of a DataGrid
How can I extend Datagrid in order to have StatusBar at the bottom of it? It should be something like:
<CustomControl>
<StackPanel>
<DataGrid></DataGrid>
...
0
votes
1answer
128 views
Can't get effect working in ControlTemplate
I must confess the intricate workings of ControlTemplates is not something I'm prepared to write books about quite yet. :O)
Anyway, I've written a custom button (there must be thosuands out there) to ...
