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

0
votes
1answer
23 views

Style not getting applied first time

I am styling Grid Columns and there are some columns with custom template and some with default template. The first time when I load the view the style is not applied to the columns with default ...
0
votes
0answers
32 views

Get Value from a Label in a Template for a Listboxitem

My problem is that I need the Value of a Label in a Template as a string. Its a Template for a Listboxitem with a CheckBox and a Label. When the box get checked I need the value of the label as a ...
0
votes
0answers
10 views

In Silverlight, How to bind SelectedItem of ComboBox in a ControlTemplate to a ViewModel Property

I have this code of a ComboBox that works and binds the SelectedItem to a property in my ViewModel: dxe:ComboBoxEdit x:Name="luTeacher" Margin="0,5,0,0" AutoComplete="True" ItemsSource="{Binding ...
0
votes
2answers
545 views

Silverlight Find Control in Data Template

I have the following xaml code: <dxb:BarButtonItem Name="btnPrev" Cursor="Hand" ItemClick="btnPrev_ItemClick"> <dxb:BarButtonItem.ContentTemplate> <DataTemplate> <Image ...
0
votes
2answers
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
1answer
27 views

WPF Howto create a reusable composite component with configurable content?

I would like to create a component that is made up of an arbitrary control and a little button beside this control (same as in this example: http://putridparrot.com/blog/wpf-composite-control/). My ...
2
votes
1answer
27 views

How to reference a control template from a standard control using bindings?

I am building a custom control that inherits from the standard System.Windows.Controls.Calendar control. I'm following this article on Code Project. I also want to make the CalendarItem sub object ...
1
vote
0answers
58 views

Validating WPF Visual Tree

I am trying to enforce that any new style added should have to meet some standards. Here is a simple example. <Style TargetType="{x:Type CellValuePresenter}" BasedOn="{StaticResource {x:Type ...
0
votes
0answers
277 views

How to maintain virtualization in WPF ListBox while templating selected item

I have a ListBox with 1000 items and when a particular item is selected, the item expands (as I have Templated the ListBox Selected Item) providing more information to the user. The problem is that ...
0
votes
1answer
34 views

How to change settings of a base style from derived settings using BasedOn property

I have simple style with ControlTemplate OrangeButton, and I have created another style OrangeButton2 BasedOn OrangeButton. I am trying to change the border properties, but WPF doesn't render the new ...
3
votes
1answer
43 views

Is GetTemplateChild Obsolete in .Net 3.5 and what is the difference between FrameWorkTemplate.FindName and ControlTemplate.FindName

I overrided Template of a control in ResourceDictionary Generic.xaml. In that I added a button on which i wanted to add some events. <Setter Property="Template"> <Setter.Value> ...
0
votes
0answers
18 views

How to use a Grid as an ItemsControl's ItemPanel in a ControlTemplate and still use it as a TemplatePart (Name = “PART_xyz”)?

The title basically says it all: Here's the control template for a custom control: <ControlTemplate TargetType="{x:Type local:MatrixViewer}"> <Grid><ItemsControl ...
-1
votes
1answer
32 views

ControlTemplates in WPF

Create a WPF application by defining a new Control Template for the TextBox control. You provide a custom appearance for the TextBox and implement the functionality to change that appearance when the ...
0
votes
0answers
43 views

Accessing ProgressBar within ControlTemplate of Button

I am wondering how to access my progressbar within a button. The control template used by the button is: <ControlTemplate x:Key="ButtonWithProgressBarControlTemplate" TargetType="{x:Type ...
4
votes
7answers
1k views

WPF Border DesiredHeight

The following Microsoft example code contains the following: <Grid> ... <Border Name="Content" ... > ... </Border> </Grid> <ControlTemplate.Triggers> ...
1
vote
1answer
60 views

WPF Button behavior using Triggers

I have a Button with custom appearance defined by a ControlTemplate. It contains a Canvas which contains a Path. I would like to add changes in Path.Opacity depending on mouse state: default - 0.5 ...
0
votes
2answers
3k views

WPF: Update a label in a listbox item

I have a ListBox where the number of items is added based on and integer property set by a user. The items are created from a ControlTemplate resource that which is comprised of a Label and a TextBox ...
0
votes
1answer
20 views

Custom control or not in this case?

I would factor a graphic control, but I do not know how to do it. I want to create a container control with templated elements. ex: <MyControl> <MyControl.Elements> ...
0
votes
1answer
22 views

ControlTemplate for adding UIElements to original control

I want to add an exclamation mark Image to the left of the built-in TextBox and make it visible whenever the TextBox Validation.HasError attached property is true, otherwise hide it. How can I use ...
2
votes
1answer
420 views

Binding a data template selector to a content control template

I would like to bind a content control to a data template selector, bind a variable to that content control and then display a different template depending on what the variable contains. I've managed ...
2
votes
0answers
43 views

Creating ControlTemplate programmatically

I have a simple set up like this. ContentControl in XAML Add AdornerY to the adorner layer in the code-behind to the ContentControl AdornerY's template is set to my custom ControlTemplate ...
1
vote
2answers
51 views

How to impose default style on styles with Control Template in WPF

In my case, based on configuration settings grid lines should appear in different colors. I have defined a simple style with TargetType of CellValuePresenter and I noticed that the style is applied ...
1
vote
2answers
65 views

How to apply TextBox Control Template?

I'm trying to simplify some code and improve my maintainability. I was initially seeking a way to have a text box aligned to the left, that can shrink and expand to a maximum value without centering ...
0
votes
1answer
88 views

change control template based on current theme

Unfortunately I had to override the control template of one of the TabControls in my application because I needed to do some slight modification on the look and feel that couldn't be done otherwise. ...
0
votes
2answers
34 views

On Mouse Over doesn't fire triggers in ContentTemplate

I have some textboxes and I want to change some of their properties when I put the mouse over them. In this case, I want to change the BorderBrush and BorderThickness. This is my XAML ...
0
votes
0answers
27 views

writing a custom control that adheres to the current theme

Sometimes I need to write a custom control that is actually nothing more than the compostion of other standard controls. I just want to encaplulate a certain control behavior. A typical example would ...
1
vote
0answers
91 views

Relative Binding in RichTextBox to its Paragraph

I want to display a Line of Text via an ItemsControl beside a RichTextBox. Therefore I created this ControlTemplate: <RichTextBox Margin="5,0,5,0"> <RichTextBox.Resources> ...
2
votes
2answers
110 views

ScrollViewer control template breaks textboxes

I copied ScrollViewer template from MSDN (link) and it breaks textbox behavior. Scroll now doesn't follow selection when I select text using mouse. Why? How to fix it? Here's my code <Window ...
0
votes
0answers
39 views

Use a calendar in a ComboBoxItem WPF

I'm trying to use a comboboxitem as a calendar but I can't seem to figure out how to pull the value from the calendar. Here's my XAML, any thoughts? <ComboBox Width="100" SelectedIndex="0" ...
0
votes
2answers
57 views

How can code find resource in model that does not have access to user control

I have a usercontrol that has MergedDictionaries <UserControl.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary ...
0
votes
0answers
14 views

Gneric.xaml case Sensitive (Blend Crash on Templated Control)

I had a problems with my Templated Controls in Expression Blend. (Silverlight) It still keeps crashing, and I could only edit in XAML not in Designer. Today I renamed Generic.xaml to generic.xaml, ...
0
votes
1answer
79 views

Adding a RadioButton to a WPF ListItem in XAML using a ControlTemplate

Following gehho's answer to "MVVM Group Radio Button" I'm trying to add a radio button to a list item such that when the list item is selected the radio button gets checked, and when the list item is ...
0
votes
0answers
52 views

Can you Bind a Style to an Attached Property and using a StaticResource?

I have a ControlTemplate for a Button that sets an Image based on an attached property and some text in a TextBlock: <ControlTemplate x:Key="ImageButtonTemplate" TargetType="{x:Type Button}"> ...
2
votes
1answer
110 views

How to get Specific Element of Style by code in Wpf c#

Hi I'm trying to use a template item into the code behind c# I'm trying to access the PictureBox which is WindowsFormHost. And then set it to what I want. <Style x:Key="ScreenListBox" ...
0
votes
1answer
73 views

Change disabled listbox background to gray

I have a listbox which I need to gray out when it's disabled. Per user request it's not enough to disable it, but it also has to appear differently. shrugs I've looked in several other places and ...
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 ...
3
votes
1answer
68 views

Setting a property of a style's ControlTemplate in XAML

I want to access a property nested inside a style's control template. I know that you can do this in the code-behind: GradientStop stop = (GradientStop)progressBar1.Template.FindName("gradStop", ...
0
votes
0answers
6 views

Problems accessing a TargetName in a DataTrigger

Here is my code <ControlTemplate x:Key="ToggleButton_CheckBox_ImageTemplate" > <Image x:Name="CheckBox" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Width="17.484" ...
0
votes
2answers
666 views

Xaml designer behaves differently in VS 2012 and VS 2010

I recently switched to Visual Studio 2012 from VS2010. I have some user controls which are templates for other user controls. The first ones have some ContentControl whose content is defined in the ...
1
vote
2answers
97 views

Issue creating style to be set as the GroupStyle of some ComboBoxes

I'm trying to implement the following code, with the difference that I would like this to apply to a style so that I can set it for any ComboBox that I like (i.e. I am creating a number of ComboBoxes ...
0
votes
0answers
163 views

Windows 8 Metro VisualStateManager to set property on Control

I'm having a frustrating experience transferring from WPF to Windows Store App development. First, I wanted to use an Expander control - but this isn't included for Metro. Really wanting one, I ...
0
votes
1answer
578 views

WPF ToolTip ControlTemplate access defining element properties

I am restyling the default tooltip by creating an Application level typed style resource which applies to every tooltips. In the tooltip ControlTemplate, I need to access (Binding to) a property value ...
0
votes
1answer
73 views

How can I identify a radio button from the click event of a button that has been included within the template for that radio button

This for a Windows Phone 7 app and here is the template code that I am using: <Style x:Key="RadioButtonStyle1" BasedOn="{StaticResource PhoneRadioButtonCheckBoxBase}" TargetType="RadioButton"> ...
0
votes
0answers
41 views

raise event in custom iTemplate

I have a gridview that uses a custom template field, like this: Public Class CheckBoxTemplate Implements ITemplate Public Event checkChange As EventHandler Public Sub cb_OnChange(ByVal ...
1
vote
2answers
44 views

Modify control template slightly using Style

I just need to add a thick border around the ComboBox. As you may already know, ComboBox's BorderThickness property is not of much use. So I'm trying to modify the Template using following style, but ...
0
votes
1answer
94 views

ToggleButton Style only works on last ToggleButton

I'm trying to customize my ToggleButtons so that when checked they say 'Yes' in green and when not checked, say 'No' in red. I've created the following style which is sitting in my Styles resource ...
0
votes
2answers
156 views

ControlTemplate to button with images - Silverlight for WP7

I have a ControlTemplate which targets a button control. The ControlTemplate has two images for the normal and pressed states, one for each. I want to use this ControlTemplate in 8 different buttons ...
0
votes
1answer
776 views

WPF button template alignment not setting correctly

I have created a button template consisting of a border and a content presenter. A style is then wrapped around this template and applied to a button. However, when this button is used it is not ...
0
votes
0answers
53 views

Templated control DataBind does not bind data

I use the below code to have my user control a custom layout . The UserControl code: public partial class Temps : System.Web.UI.UserControl { protected void Page_Init(object sender, EventArgs ...
3
votes
2answers
127 views

User control vs Control Template in WPF

I have recently reviewing someone's code and come across a User Control whose UI is like this screenshot This control has no code in its code behind file, i am thinking we could move all the xaml ...

1 2 3 4 5 13