Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

40
votes
2answers
27k views

WPF Resource Dictionary 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 ...
23
votes
3answers
5k views

Difference between Control Template and DataTemplate in WPF

What is difference between a ControlTemplate and a DataTemplate in WPF?
19
votes
4answers
17k 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" ...
18
votes
2answers
5k 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 ...
11
votes
2answers
12k 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 ...
9
votes
1answer
5k 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 ...
7
votes
1answer
364 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 ...
7
votes
2answers
1k 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 ...
7
votes
5answers
2k 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.
6
votes
2answers
236 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
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
3answers
153 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 ...
6
votes
6answers
547 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

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 ...
6
votes
1answer
3k 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 ...
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 ...
6
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 ...
5
votes
1answer
465 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 ...
5
votes
1answer
666 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"> ...
5
votes
1answer
4k 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 ...
4
votes
1answer
141 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 ...
4
votes
1answer
211 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
3answers
471 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
2answers
303 views

WPF Custom Control Template Not Applied

I'm sure this question or derivatives of it have been asked a bazillion times, but I couldn't find anything that helped me solve the problem, so I'm asking. Please feel free to direct me to the ...
4
votes
1answer
753 views

WPF: How to have custom button template that uses system's button background by default?

I am creating a style that changes a ControlTemplate of a Button (it actually adds arrow on the right, so that the button looks like dropdown button (which is missing in wpf)). Inside of template, I ...
4
votes
3answers
3k 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> ...
4
votes
1answer
953 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). ...
3
votes
0answers
64 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've replaced the code in the Ajax grid template with a with my ...
3
votes
3answers
122 views

How to adjust width according to the space available for wpf toolbartray

I am using around 10-15 controls inside a WPF ToolbarTray control, Now the issue is while I am changing the resolution the controls present in it is not adjusting according to my need in case of ...
3
votes
2answers
176 views

Need to create a context menu having header and scroll bar support

I need a global context menu style/template having a header and then verious menu items; as the number of menu items in my context menu can be large it needs to support the scrolling. The problem ...
3
votes
1answer
140 views

WPF, scrollbar Thumb displays backwards

I followed a tutorial to create a scrollbar template from this site: http://sachabarber.net/?p=122 But some reason, the Thumb control is backwards, When the content of the scrollviewer is at the top, ...
3
votes
1answer
71 views

Foreground property behavior confusion

I have a custom control like this: public class CustomControl1 : Control { private StackPanel panel; static CustomControl1() { ...
3
votes
1answer
145 views

Creating a ControlTemplate at Runtime in Silverlight

I'm writing a Silverlight application that requires me to dynamically create a ControlTemplate at runtime. Most of the solutions I've found involve creating a new template for each case, but I have ...
3
votes
1answer
248 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 ...
3
votes
2answers
103 views

Formatting issues trying to create a WPF Label template that allows text selection

I have a requirement to allow selecting the text displayed in read only screens. A simple solution one of our developers came up with is using a TextBox instead of a Label or TextBlock, with the ...
3
votes
2answers
429 views

Foreground Color of Custom Button (ControlPresenter)

I am attempting to define a global button style in App.xaml, and it's mostly working as I expect. However, I just cannot figure out how to get the Foreground to work correctly. No matter what I do, ...
3
votes
1answer
231 views

How does VirtualizingStackPanel decide when to unload (dispose?) of virtualized controls?

I'm working with an ItemsControl using a VirtualizingStackPanel in its ControlTemplate. I've got the virtualization working, to some extent. I've put debugging statements in the Loaded and Unloaded ...
3
votes
1answer
306 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 ...
3
votes
1answer
2k 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: ...
3
votes
1answer
131 views

Can't reference a control inside ControlTemplate

I have a ResourceDictionary which contains a ControlTemplate where I reference object from another assembly. <ResourceDictionary ...
3
votes
1answer
592 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 ...
3
votes
2answers
1k 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 ...
3
votes
1answer
143 views

Bind to a method in code behind

I have a custom control template for a ListView that puts an extra line in for each record, thats defined something like this in Window.Resources... <ControlTemplate TargetType="ListBoxItem"> ...
3
votes
1answer
3k 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 ...
3
votes
1answer
496 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 ...
3
votes
2answers
3k 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 ...
2
votes
2answers
50 views

ControlTemplate with DataTrigger Vs. DataTemplate with DataTemplateSelector

I have a generic control which displays an editor based on the type property inside a ViewModel. Currently it's implemented using Control, ControlTemplate and DataTriggers like this - <Control ...
2
votes
2answers
38 views

How to make two controls apear as focused?

I'm trying to write a custom control, that have a TextBox and a ListBox inside it's template. But I've found that when I entering a text in the TextBox (so TextBox has focus), ListBox appears as not ...
2
votes
0answers
29 views

Error with templated control with attribute [TemplateInstance(TemplateInstance.Single)] inside FormView

I've created a Custom Control that has a single ContentTemplate where I've decorated the ITemplate property with the [TemplateInstance(TemplateInstance.Single)] attribute to make all controls inside ...
2
votes
1answer
148 views

Achieve “slide down” animation in WPF

I am attempting to create my own template for an Expander control. When the control is expanded, I want the content to slide down slowly. The desired height of the content is not known at compile ...

1 2 3 4 5 8