Tagged Questions
The datatemplates tag has no wiki summary.
7
votes
3answers
817 views
Filtering a hierarchical object displayed with nested xaml data templates
I'm having trouble filtering hierarchical data that's being displayed in nested xaml templates.
I've got a ObservableCollection<Foo> Foos, that I'm displaying in XAML.
Lets say Foo looks like:
...
6
votes
2answers
8k views
How to get DataTemplate.DataTrigger to check for greater than or less than?
The following DataTemplate.DataTrigger makes the age display red if it is equal to 30.
How do I make the age display red if it is greater than 30?
<DataTemplate DataType="{x:Type ...
4
votes
2answers
3k views
In MVVM are DataTemplates considered Views as UserControls are Views?
In MVVM, every View has a ViewModel. A View I understand to be a Window, Page or UserControl to which you can attach a ViewModel from which the view gets its data.
But a DataTemplate can also render ...
3
votes
3answers
51 views
How to preserve the full state of the View when navigating between Views in an MVVM application?
I have an MVVM application that requires basic backward/forward navigation between screens. Currently, I have implemented this using a WorkspaceHostViewModel that tracks the current workspace and ...
3
votes
2answers
580 views
Are recursive DataTemplates possible?
I have a class something like:
public class Section
{
private IEnumerable<Section> sections;
private IEnumerable<KeyValuePair<string, string>> attributes
public string ...
3
votes
2answers
512 views
How to use DataTemplates in Prism
I have been using Prism for a while now and enjoy how much easier it is to decouple my modules.
This works especially great for views and view models since you can inject the view models via ...
2
votes
2answers
309 views
using one data template in another data template in WPF
I have two data templates, one of which is the subset of another like below:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
2
votes
2answers
369 views
Content generated from ContentTemplate does not have DataContext of Silverlight ContentControl set
In my Silverlight 4 application, I have a ContentControl with its ContentTemplate property bound to a property in the data context. That works fine. However, the content of the template once ...
2
votes
2answers
1k views
Converting WPF Datatemplates using x:Type to Silverlight
I have a WPF app that uses x:type when working with datatemplates.
This doesn't work in Silverlight out of the box, but I can remember that I saw something some time ago in a googlegroup where they ...
1
vote
1answer
35 views
Temporarily changing a property
Is it possible to achieve through data templates a behavior so, that I can change the foreground color of a cell for just 'x' seconds and then return it to its original color.
E.g. I define a data ...
1
vote
2answers
123 views
How do I bind a generic window to an arbitrary view model at runtime, using DataTemplates?
I have a large number of ViewModel classes. For each of these classes, there is a corresponding .xaml file which is a 'UserControl'. In my App.xaml, I have them registered as DataTemplates, like so:
...
1
vote
3answers
8k views
WPF TabControl and DataTemplates
I've got a set of ViewModels that I'm binding to the ItemsSource property of a TabControl. Let's call those ViewModels AViewModel, BViewModel, and CViewModel. Each one of those needs to have a ...
0
votes
2answers
69 views
How to show a data template on a content control?
Imagine that in one data template, I have a textBox, and another data template, I've got two textboxes.
According to this, in the view has a checkbox, and show each template.. is this possible?
...
0
votes
1answer
46 views
Rendering templates preformances
I created a propertyGrid like.
I used an Item control which uses a viewmodel object.
The VM object has the property to be display and its relevant DataTemplates.
Everything wosrk fine. My Property ...
0
votes
0answers
33 views
Add columns dynamically with datatemplate inside the TreeListView
I am using TreeListView in which one Gridviewcolumn is added at design time and more columns are added at runtime.
The columns that I have added at runtime will have checkbox or combobox based upon ...
0
votes
2answers
32 views
Applying transforms from DataTemplates in WPF
I've created a DataTemplate for my objects in a ResourceDictionary file. The template is basically an image that is loaded from the disk. Now, what happens is that I want to align the image to a ...
0
votes
3answers
49 views
How to bind to parent DataTemplate from within an ItemsControl.ItemTemplate
I have a container type control which contains a number of items. The container control has a DataTemplate defined which also contains a ItemsControl with a DataTemplate for the item. The items ...
0
votes
1answer
55 views
WPF + Animation + Datatemplate
Hi Experts,
I want to achieve a behavior that if "new value" is greater than "previous value" for a particular cell then I want to show a green color arrow as per the attached image above for "x" ...
0
votes
0answers
14 views
How near can I get with ASP.NET/MVC`s Views compared to XAML DataTemplates?
Can I redo this UI with ASP.NET/MVC and any additional opensource Framework or commerical components?
The Model data is 1 Period has N Documents. Its aggregated data and must be shown in the ...
0
votes
1answer
557 views
How to select ListView row if control in data template is clicked
I have a ListView that is using a DataTemplate. I swap out the Item DataTemplate based on the IsSelected property of the particular item. This allows me to display an edit template and a read ...
0
votes
1answer
128 views
Using a ListBox control in a DataTemplate
I have a simple WP7 Programm where I want to switch between displaying my model objects in a ListBox and a Diagramm.
I want to use Data Templates and a Selector Class which returns the correct ...
0
votes
1answer
345 views
Problem binding data to controls in dynamically created wpf TabItem
I am having problem putting data into controls on wpf TabItem.
I have defined several DataTemplates in xaml. Here is one of them:
<Window.Resources>
...
<DataTemplate x:Key="memoTab">
...
0
votes
1answer
303 views
ListBox Dropshadow Animation
I have a ListBox that uses a custom control as the ListBox.ItemTemplate DataTemplate.
I guess my first question (and the rest are relevant) is how to you create unique names for the children in a ...
0
votes
2answers
288 views
Binding Items inside a DataTemplate with Items from another DataTemplate
I have two Data Template (one for drawing[draw] and another for Input Data[data]) Also I have the two ContentControls which uses the above DataTemplates.
I want the both DataTemplate's elements to be ...
0
votes
1answer
216 views
Data Binding, DataTemaplates and DataSets… Data Bound TextBox not Updating Underlying Source?
In my WPF App I've got a ListBox. This ListBox is bound to a Dataset(i used the Click-Drag Method onto the Window).
The Listbox has a DataTemplate, and the Elements(TextBox's) of this DataTemplate is ...
0
votes
1answer
374 views
Custom controls in a row of a list view
I want a list view control (or any list like control) in which each row (item), not only has text, but also some other controls. For example, each row (item) in my list view is composed of a checkbox, ...
0
votes
1answer
861 views
Dynamic Datatemplate in WPF
I have a requirement that based on the User who logged in to my application I need to show a different view. How can I achieve this using datatemplates?
Thanks,
Jithu