Data templating is a feature of WPF that lets you completely redefine the way a control looks and acts.

learn more… | top users | synonyms

1
vote
2answers
78 views

Use same DataTemplate for different types

Is it possible to use the same DataTemplate for a defined selection of types, i.e. how to change the following sample code so that the same DataTemplate is used for all listed types? <DataTemplate ...
1
vote
2answers
280 views

WPF Canvas items and DataTemplate

Is there a way that I can use non-UIElements in a canvas if I have a DataTemplate (or something similar) for them? I feel like I have done this before, and that it is possible, but I can't figure it ...
0
votes
1answer
432 views

View full Grid item when modified GridView template

I have this xaml code: <local:MyGridView x:Name="topDeal" ItemsSource="{Binding}" Margin="60,0,0,0" Grid.Row="1"> <GridView.ItemTemplate> ...
2
votes
2answers
223 views

WP7 - Maps - edit attribute of pushpin template at runtime

I am developing the mapping functionality of our WP7 application. currently the pushpins appear as a circle graphic. I am trying to create functionality to allow the user to be able to change the ...
1
vote
1answer
230 views

Get FrameworkElementFactory from FrameworkElement

I have a FrameworkElement, such as StackPanel with children, I need to create a DataTempltate whose VisualTree property is my FrameworkElement. To do this work I need to convert my FrameworkElement in ...
1
vote
2answers
667 views

XAML template binding in Windows 8

I am walking through Windows Store Sample Application XAML Twitter Client 1, to get the same features in my own application. But i can't get binding work in 1 to 1 sample page. This is my grid for ...
2
votes
1answer
351 views

Can a DataTemplate be tied to a nested class?

Can a DataTemplate in XAML be associated with a nested class? I am working on a MVVM application, and I have run into a data template problem. I have a view model providing a collection of other ...
2
votes
0answers
211 views

WPF animation in datatemplate using VisualStateManager

It's pretty common issue when you trying to input a visualStates for some datatemplate. The code below works fine, but only if I use a FrameworkElement, such a custom UserControl: ...
1
vote
0answers
102 views

XamlParseException with DataTemplate

I have a custom UserControl in my WPF application namespace, and I want to create a DataTemplate with my control. So, I wrote: string custom_template = "<DataTemplate ...
0
votes
1answer
119 views

Can't change content-template dynamically

I have a ContentControl that I need to set it's ContentTemplate dynamically. so I decided to write 2 DataTemplates, and then style my ContentControl such that a trigger fires and set the proper ...
0
votes
2answers
88 views

Is it possible to hide a specific ColumnHeader in WPF DataGrid?

I wonder if it is possible to hide a specific Column Header in DataGrid,for example i want to hide the Header of Column 2,because i need to put a Contol inside that ,and don't need the header anymore. ...
1
vote
2answers
208 views

How to add a DataGrid to a DataGridTemplateColumn.CellTemplate

I need to add a DataGrid to a DataGridTempateColumn,so i did this, but it dosen't work correctly,I don't know if i really can add a DataGrid to a DataGridTempateColumn? <datagrid> .... ...
0
votes
1answer
83 views

DataTemplate show TextBlock on hover?

I'm trying to make an WinRT app. I have managed to make an ListView with a binding and a custom ItemTemplate. The ItemTemplate refers to an DataTemplate with 3 textbox's. What I want to do is to ...
1
vote
0answers
192 views

DataGrid ColumnWidth Property ignored in DataTemplate for row details

This is the UserControl that displays the details from my application and as you can see the ColumnWidth Property is explicit set to *. I also tried to set the Width property from the ...
1
vote
1answer
214 views

How to access textblock inside Datatemplate in combobox?

I am trying to Bind the TextBlock inside ComboBox through Code. I am able to bind the textblock sucessfully but For some reasons TextBlock doesnt display Text Values. I have mechanism which checks ...
1
vote
1answer
648 views

Pivot item datatemplate

I want to fill my pivotpage using bindings following this tutorial. It works very well except for 1 fact. My content doesnt fill to it maximum potential. Normal: XAML: <controls:Pivot ...
0
votes
0answers
71 views

Need Silverlight template to reload

I am implementing a Master-Detail view (trying to use MVVM too). The master is a ListBox containing items of 5 different types (all formatted the same in the Master). The Detail has different form ...
0
votes
1answer
459 views

How to get the current view inside a FlipView?

I have a FlipView with some controls in the DataTemplate. Since it's in a FlipView, it will generate multiple copies of those controls. If I want to find the control that is in the current FlipView ...
0
votes
1answer
158 views

Collapse ContentControl if Content is Collapsed

I've got a ContentControl which has a style containing a border and other visual decorations. I want these decorations to disappear when the content is collapsed, so I figured I have to set the ...
1
vote
2answers
125 views

Applying style to elements inside a DataTemplate

I have a UserControl which simply contains a TextBlock and TextBox inside a DataTemplate. This is done in the following way: <UserControl.Resources> <DataTemplate DataType="{x:Type ...
0
votes
1answer
122 views

How to convert this XAML code to C#? [closed]

I have this XAML and I want to create the object using C# <DataTemplate x:Key="ButtonTemplate"> <Button Click="Cell_Click"> <Button.Template> ...
2
votes
2answers
205 views

Binding DataTemplate content

I have the following DataTemplate: <DataTemplate x:Key="ButtonTemplate"> <Button Click="Cell_Click"> <Button.Template> <ControlTemplate ...
0
votes
1answer
58 views

Data Template and Sub DataTemplate

I have a project with WPF. How can I use Data Template and sub Data Template on it. I have below class in my project. public abstract Class X public Class A: X public Class B: X public Class C: X ...
1
vote
1answer
226 views

Access the TextBlock 's text at run time in DataTemplate of ItemsControl in WPF

Iam displaying messages in my WPF application when a new message is added to the messages, i need to highlight it.so i want to dynamically get the text added to TextBlock i have the xaml like this ...
0
votes
1answer
254 views

Set a Columndefinition width from code behind

I need to set the width of a columndefinition within a datatemplate for a listview based on some computation which is done in code behind. So I got this: <DataTemplate ...
0
votes
1answer
139 views

how to show an object as a row of wpf datagrid and convert it back to be an object

I have an object similar to class Quote { string Ticker {set; get; } string Rating {set; get;} People Sender {set; get;} } Peaple is defined as, class People { string Email {set; ...
0
votes
0answers
164 views

ContentControl with Datatemplate Content stretch

I have a Content control, and I would like to stretch the content trough the width of the screen but for some reason my solution just wont work... <ContentControl Grid.Row="1" ...
0
votes
0answers
72 views

access the stackpanel inside a datatemplate in windows phone

I want to access the StackPanel UIElement inside a ItemTemplate(datatemplate) of listbox: <ListBox x:Name="list"> <ListBox.ItemTemplate> <DataTemplate> <StackPanel ...
0
votes
0answers
144 views

WPF Bindings : Editing a value in a TextBox inside a DataTemplate that displays that same value

I want to create a debug window that will allow us to edit properties from various objects in our app while it runs. This will allow us, for example, to tweak threshold values for certain heuristic ...
0
votes
1answer
314 views

TabControl DataTemplate Instance Creation Issues

I have a WPF issue that I don't understand - can anyone help? The WPF below is used as the ContentTemplate for a standard TabControl and resides within a ResourceDictionary. MyElementItemsControl is ...
0
votes
1answer
922 views

Datatemplate in c# code-behind

I search an option to build a datatemplate in c# code. I had used : DataTemplate dt = new DataTemplate(typeof(TextBox)); Binding bind = new Binding(); bind.Path = new ...
0
votes
2answers
163 views

ComboBox: Set text of boxitem based on condition

I have a ComboBox with a DataTemplate assigned to it. The DataTemplate looks like this: <Style x:Key="ComboBox_EntityCreation_GroupSelect_Style" TargetType="{x:Type ComboBox}"> <Setter ...
1
vote
2answers
463 views

How do you use a DataType-targeted DataTemplate together with GridView?

Before you answer: This question is about WPF's ListView control (with GridView). It is not about WPF's DataGrid control, ASP.NET's DataGrid or ListView controls, or WinForm's DataGridView or ListView ...
0
votes
0answers
122 views

Invoke method defined inside a user control used as DataTemplate for a ListBox upon adding to bound collection

If a ListBox has its DataTemplate defined through a UserControl, is it possible to invoke a method defined inside that same UserControl from the code behind of the UserControl's consumers ? I've ...
1
vote
4answers
828 views

IValueConverter from string

I have an Enum that needs to be shown in ComboBox. I have managed to get enum values to combobox using ItemsSource and I'm trying to localize them. I thought that that could be done using value ...
1
vote
2answers
424 views

listbox isSelected databinding in DataTemplate

I try to simply databind IsSelected property with IsSelected field in my class. But after I change the value in code, it doesn't change the property, neither does clicking on ListBoxItem change the ...
0
votes
0answers
204 views

Dynamically change DataGrid column cell datatemplate

I am trying to change DataGrids columns cell DataTemplate as on this sample. My grid looks like this <sdk:DataGrid AutoGenerateColumns="False" Name="dataGrid1" IsReadOnly="True"> ...
2
votes
1answer
92 views

ValueConverter behaves like singleton

I have a ValueConverter which needs an external stateful module to work. So I've inherited it from Freezable and declare dependency propery. public class Decorator : Freezable, IValueConverter { ...
1
vote
1answer
2k views

Binding to ItemsSource of TabControl in WPF

I am in a bind (no pun intended) when it comes to my current binding needs in WPF. I have spent the better part of the day trying to research my problem and I cannot find a solid solution to my ...
0
votes
2answers
1k views

Binding a WPF Button CommandParameter to the Button itself in DataTemplate

I have a DataTemplate that represents AppBar buttons that I declare through a collection of custom AppBarCommand objects. public AppBarCommand(RelayCommand command, string buttonstyle) { ...
0
votes
1answer
124 views

Binding the control's property in its DataTemplate

I have a custom control where I have modified a ListView. I have a DataTemplate which shows each item as an icon of width 128 and a label beneath it. <DataTemplate x:Key="AeroIconTemplate"> ...
0
votes
0answers
185 views

DataTemplate for DataGrid

The way I see a DataTemplate is that it is something you can pass to a control that says "Display my stuff like so". You can use the template on a single control (eg ContentControl) or some sort of ...
0
votes
1answer
431 views

Include controls in a ControlTemplate from another .xaml

I want to create a control which displays an image and a watermark (image or something else) on it. But the watermark should be loaded from another XAML file in order to let people custom the way the ...
0
votes
1answer
577 views

XAML binding properties to UserControl in ContentPresenter

I have UserControl called EditorView that shows different "editors" (other user controls) based on its Content. This is EditorView just to test the binding I replaced the FontEditor with TextBlock: ...
0
votes
0answers
48 views

Implicit data templates and RegionManager

I'm using RegionManager to manage tabs in a TabControl. I add a view model to the views of a region which then get turned into the concrete view using an implicit data template. The issue I have is ...
1
vote
1answer
225 views

Binding to value in parent page from in usercontrol in listview datatemplate in Windows Phone 7

I have a ViewCharacter page that has a View Model (CharacterViewModel) as its DataContext, in that CharacterViewModel I have an ObservableCollection of WeaponViewModel that a ListBox is using as an ...
0
votes
1answer
77 views

DataTemplate is reevaluated on resize of ItemsControl

I found some unexpected behavior in my WPF program. I have a DataTemplate to visualize my data in an ItemsControl. <ItemsControl ItemsSource="{Binding All}" > ...
0
votes
1answer
74 views

Can I bind to an ancestor DataTemplate in Silverlight?

I'm having trouble pulling off a binding that I believe should be valid in Silverlight 5: <Controls:GraphLayout> <Controls:GraphLayout.VertexTemplate> <DataTemplate> ...
0
votes
1answer
230 views

OnShown or any other event for data template item when it displayed in windows 8 metro apps

I am developing windows 8 metro style application. My application contain page with following data template. i bind "NewsObject" collection to template. <DataTemplate ...
-1
votes
1answer
108 views

Insert a DataTemplate into another DataTemplate programmatically

I want to create a customizable ListBox, in a sense that I want to choose at runtime, which items from the bound collection are shown. Something like: <CustomizedListBox Format="[Name][Age]"/> ...

1 3 4 5 6 7 25