Tagged Questions

16
votes
5answers
49k views

Styling a WPF layout grid background (of each cell, row, column)

I would like to know if there is any way to style a WPF layout grid's cells, rows and columns. I've been trying to find any information and the few mentions I've found have not been that informative. ...
9
votes
1answer
3k views

adjust border on one specific side

I'm using a controlTemplate of the ListBox to show a collection. I want to display all the items with a border like in a grid (all lines same size). When I give every listBoxItem a border, the line ...
4
votes
3answers
196 views

WPF Styles/Template inheritance

I'm trying to learn WPF at the moment, and looking into making the default .Net control look different through the use of style. Using C# as my preferred language although all the code below is WPF ...
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 ...
2
votes
1answer
327 views

How do I bind to the SelectedItem property in a ControlTemplate?

Consider the following Control/Template <my:ExpandingListBox Margin="0,2,0,0" x:Name="TagSearchListBox"> <my:ExpandingListBox.Template> <ControlTemplate TargetType="{x:Type ...
2
votes
1answer
821 views

Accessing TemplatePart without changing ControlTemplate?

i wonder if there is a way to access a control's templatepart from within c# for modifying the part (e.g. hiding, etc..). is it possible to get a reference to the part with pure c#? i don't want to ...
1
vote
1answer
48 views

How to make the selected TabItem look attached to the rest of the document

I have a WPF app with a few Tabs. I'm now messing around with styling and have for example changed the ControlTemplate so I now have to define everything about the TabItem. Now the TabItem that is ...
1
vote
1answer
541 views

WPF ComboBox ControlTemplate Background problem

This is an example of a ComboBox's ControlTemplate. CLICK HERE I've tried to set the Background / add a trigger to change the background when the ComboBox is focused (with a tab key for example), ...
0
votes
1answer
69 views

Expander button on the right side: how to do it?

i want to position the Expander button on the right side of the label. How to do this?
0
votes
1answer
109 views

Styling an adorner

Hey, I have a bunch of ContentControls on a Canvas, the ContentControls each have an adorner on top of them to increase the selection area (some ContentControls may be rendered as 1-pixel lines, and ...
0
votes
1answer
60 views

How to access and provide default values to controls within WPF templates?

I'm struggling with control templates. I'm currently building a UI which has several panes which are essentially build out of more basic controls. here's how one of our construction panes looks like ...
0
votes
1answer
201 views

wpf - ControlTemplate and validation - how to position items

Hi I created ControlTemplate which is shown if there are validation error on my textbox. My controltemplate looks like that <ControlTemplate x:Key="TextBoxErrorTemplate"> <TextBlock ...
0
votes
1answer
424 views

How to draw complex shape from code behind for custom control in resource dictionary

I am new to wpf and am having a problem which may or may not be trivial. I have defined a custom control as follows in the resource dictionary: <ResourceDictionary ...
0
votes
1answer
440 views

Scrolling list items in wpf

I guess the following picture depicts the problem better than texts... That is what I need. <ListBox x:Name="NamesListBox" ItemsSource="{Binding}"> <ListBox.ItemsPanel> ...
0
votes
1answer
610 views

WPF ControlTemplate How to

I am very new to WPF, about 4 hours new. I am coming from ASP.net and Masterpages. I was looking at examples of Control Template that can used to template a window so all windows look the same. Other ...
0
votes
4answers
1k views

Setting Properties of Control Templates in XAML

I've created a button control template where I want to change the glow color of the button on the xaml level. Here is what I mean. <Button x:Name="btnClose" Template="{DynamicResource ...
0
votes
2answers
498 views

How could I implement this strange WPF TreeListDataGridView?

As you can see in the image below I have a tree datamodel consisting of groups that can contain other groups plus an arbitary number of items wich again can hold Parameters. The Parameters itself are ...