The datatemplateselector tag has no wiki summary.
4
votes
1answer
1k views
WPF: Reapply DataTemplateSelector when a certain value changes
So here is the XAML that I have:
<ItemsControl ItemsSource="{Binding Path=Groups}" ItemTemplateSelector="{Binding RelativeSource={RelativeSource AncestorType=Window}, ...
4
votes
2answers
2k views
Explicitly refresh DataTemplate from a DataTemplateSelector?
I set up a ContentControl.DataTemplateSelector to my desired one.
I want that according to a command or whatever, call the ContentControl to reselect the template from the selector by either xaml or ...
3
votes
3answers
97 views
How to trigger DataTemplateSelector when property changes?
I have ContentPresenter with DataTemplateSelector:
...
public override DataTemplate SelectTemplate(object item, DependencyObject container)
{
var model = item as ...
3
votes
1answer
622 views
WPF DataGrid Binding to datatable
This is driving me nuts. I am creating a DataGrid in code and then binding it to a datatable. This is dynamic and the rows and columns will be different everytime the grid is created.
Basically I ...
2
votes
2answers
100 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
1answer
982 views
WPF: Find Resources from UserControl within DataTemplateSelector class
I know there is this thread: How to find a resource in a UserControl from a DataTemplateSelector class in WPF?
asking the same.
BUT... I am not satisfied with the answer! THERE MUST be a way to grab ...
2
votes
3answers
2k views
WPF DataTemplateSelector.SelectTemplate not called for a ContentControl-derived type
I'm trying to build a ContentControl-derived control (let's call it MyContentControl) that will have its ControlTemplate set by an instance of a DataTemplateSelector-derived type (let's call it ...
1
vote
1answer
70 views
Applying a DataTemplateSelector in a Custom Control Style
I am developing a custom control which descends from a ListBox. As part of my control, I want to provide a default ItemTemplateSelector. Unfortunately, I can't see to get it to find my ...
1
vote
0answers
211 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 ...
1
vote
2answers
237 views
How to use DataTemplateSelector with a DataGridBoundColumn?
I followed the simple method described here and have a DataGrid with dynamically generated columns which allows DataTemplates to be used and bound dynamically.
for (int i = 0; i < ...
1
vote
1answer
105 views
How can you enable auto-DataTemplate selection based on data type like you can with an items control?
We're writing a very specialized ItemsControl which actually has three ContentPresenter's per 'row', each bound to a different object (think poor-man's grid) instead of the more common one, like a ...
1
vote
0answers
213 views
WPF DataTemplateSelector criteria change but the template does not get reapplied?
I have a DataTemplateSelector which is applied to a DataGridTemplateColumn.
It is correctly providing me with a DataTemplate that varies depending on certain information in my DataRow (in other ...
1
vote
1answer
170 views
Separator via DataTemplate
I have a ToolBar with a bound ItemsSource, I am using DataTemplateSelector to determine the DataTemplate at runtime (i.e Button / ToggleButton).
I want to add a Separator DataTemplate, how do I do ...
1
vote
1answer
221 views
WPF: TemplateSelectors for different GridViews
Currently I have a UserControl that displays collections of data in the same layout. So one control could be instanced with a collection of ObjectA and another of ObjectB. I then use TemplateSelectors ...
1
vote
1answer
123 views
How do I apply a DataTemplate in a Dynamic Grid?
I have a Grid. The grid's columns are auto-generated at run-time based on the user's selection.
I need the cells in the grid to be red if the content is a negative number.
I have created a ...
1
vote
1answer
628 views
WPF - Getting the value of one a DataGridCell from within DataTemplateSelector
I'm using DataTemplateSelector with the WPFToolkit DataGrid. I want to select the editing template for one cell based on the value of another cell on the same row.
The DataTemplateSelector's ...
0
votes
1answer
77 views
Force DataTemplateCell with CellTemplateSelector in WPF DataGrid Autogenerated columns
I have a data grid to which I bind a DataTable. I don't know what rows or columns will be in the data table so I set the AutogenerateColumns property of the data grid to true. The only thing I do know ...
0
votes
0answers
45 views
Converting UserControl to CustomControl
I have an application that was created using inline xaml for creating the needed dataelements. I have decided to convert these data elements to their own custom controls.
Example - I have a ...
0
votes
0answers
173 views
Dynamically change WPF Toolkit Chart Types using DataTemplateSelector
I have two WPF toolkit charts (column and pie).
<-- Column Chart -->
<DVC:Chart Name="mcChartPie" Title="{Binding ChartName}"
DataContext="{Binding SelectedChart}">
...
0
votes
1answer
173 views
CellTemplateSelector won't choose template automatically
I have two templates for DataGridTemplateColumn
<DataTemplate x:Key="firstTemplate">
<UniformGrid Grid.Column="1" Columns="2">
<Label Background="{Binding ...
0
votes
1answer
1k views
WPF DataTemplate / DataTemplateSelector — Best approach for a ViewModel used by 2 different Views?
Basically, I have the following scenario:
ViewModel: FooViewModel : BaseViewModel, BarViewModel : BaseViewModel
Views: MainView, FooView, BarView
Right now I "inject" the view and set the ...
0
votes
0answers
233 views
Unable to locate resource by ComponentResourceKey defined in the same resource dictionary
Suppose I'm writing a WPF custom control. I got it in a separate assembly. Also I defined all resources in a separate ResourceDictionary. As a keys I use ComponentResourceKey objects.
...
0
votes
2answers
564 views
How do I bind a WPF control's content to its container's DataContext so I can apply a DataTemplateSelector based on that object?
I'm trying to bind a WPF window atop a ViewModel that contains two collections, A and B. I'm attempting to use DataTemplates to display either A or B depending on the setting of a flag in my ...
0
votes
1answer
361 views
Switching ListBox ItemTemplate based on both item type and view option
I'm currently implementing a listbox in WPF that will have 2 alternative layouts for its items:
So far, I've done this using a DataTrigger to switch the ItemTemplate for the ListBox and it's ...
0
votes
1answer
310 views
DataTemplateSelector issue
In my Silverlight project, I needed to use DataTemplateSelector.
I found a way to implement this (as it's not present in the framework) here : ...
0
votes
1answer
230 views
Can I use a DataTemplateSelector within a DataTemplate?
I have an ItemsControl using a StackPanel to display a list of items.
I would like a label to appear for each row, but for the content to the left of the label to be defined by a ...
0
votes
1answer
408 views
DataTemplate for a DataType - how to override this DataTemplate in a particular ListBox?
I have created several DataTemplates for some of the DataTypes in my pet project.
These data templates are really cool as they work like magic, magically transforming the look of the instances of the ...
0
votes
2answers
270 views
WPF ComboBox Key Index not working when using data template selector
I have a problem regarding WPF combobox when using data template selector.
Basically, WPF combobox has a standard behaviour which will take you directly to the item that starts from a character if ...
0
votes
2answers
331 views
.NET4 WPF Datagrid - Responding to different datatypes
I'm a novice programmer and I've been doing it more as a hobby then a career. As such I'm putting together an application for generating invoices for company I work for. I have the invoicing stuff ...
0
votes
1answer
2k views
WPF - How to properly reference a class from XAML
OK, this is a super super noob question, one that I'm almost embarrassed to ask...
I want to reference a class in my XAML file. It's a DataTemplateSelector for selecting the right edit template for a ...
0
votes
1answer
315 views
WPF Themes and TemplateSelectors
So I'm going through a style (in this case, WhistlerBlue.xaml) and I'd like to be able to use TemplateSelectors with my data.
However, this seems a fallacy because it just doesnt seem to work! How ...