Tagged Questions
5
votes
2answers
5k views
Display a default DataTemplate in a ContentControl when its content is null or empty?
I would think this is possible, but the obvious way isn't working.
Currently, I'm doing this:
<ContentControl
Content="{Binding HurfView.EditedPart}">
<ContentControl.Resources>
...
4
votes
2answers
1k 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
2answers
2k views
Unable to set ContentTemplate via DataTrigger
I want the ContentTemplate to vary according to the value in the DataTrigger.
And yes, I considered using a DataTemplateSelector, but now I need a DataTrigger or better said a MultiDataTrigger.
Please ...
1
vote
1answer
86 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
1answer
234 views
ContentControl two way binding within DataTemplate not working?
I've setup a reusable datatemplate "DataGridCheckBoxEdit" for a datagrid column. Binding to it one way works like a charm through ContentControl. Binding directly works two way correctly. However, ...
1
vote
1answer
96 views
difference when setting ContentTemplate via name than via type inference
I have recently start to learn WPF + MVVM. It is possible I have the wrong end of the stick or the wrong stick completely with the way things should be done.
I am trying to create a simple order ...
1
vote
2answers
247 views
DataTemplate defautl visibility for ContentControls
In my MVVM based WPF application I have a lot of different ViewModel types that dynamically loaded into ContentControls or ContentPresenters. Therefor I need to explictly set what DataTemplate is to ...
1
vote
1answer
235 views
Element addressing within a DataTemplate from a ContentControl
How do I access an element contained in a DataTemplate that is displayed through a ContentControl. I have a ContentControl which hosts a PresentationModel along the lines of:
<ContentControl ...
0
votes
0answers
81 views
How to get the active Row of the WPF DataGrid inside the TemplateSelector
I have a WPF Datagrid with three columns. The first two columns DataGridComboBox Columns. The third column is the Template column with ContentControl inside. I want to use this Datagrid as Data entry ...
0
votes
1answer
125 views
TextBox within DataTemplate, on GotFocus cannot assign SelectionStart?
I have a logic with my textbox which says, on focus move the selection start to the last character, so that the editing person can just continue writing.
This worked perfectly with this:
private ...
0
votes
1answer
119 views
Using a resource and DataTemplateSelector from a different assembly
I have a control in a base assembly with Content that I would like to set based on the current DataContext.
To do so, I am trying to use a resource and subclassed DataTemplateSelector in the calling ...
0
votes
1answer
77 views
WPF: How can I get current inheritor ListView from DataTemplate
I have 2 inheritors of ListView:
public class FileListView : ListView
public class ThumbnailListView : ListView
In XAML I have following code:
<Window.Resources>
...
0
votes
2answers
354 views
Binding to property on root element in DataTemplate through a ContentControl
In my user interface I sometimes want to put titles above usercontrols.
I want to declare these titles in XAML for future localizability, so I want to keep them out of the datacontexts.
Can ...
0
votes
1answer
128 views
XAML tostring in ContentControl
I am new to the XAML world and I'm fumbling my way through a lot of tutorials. One thing i'm stuck on is calling the .tostring on an object.
Here is mysetup
I have a listbox that is bound to a list ...
0
votes
0answers
464 views
MVVM/WPF: DataTemplate is not changed in Wizard
I wonder why my contentcontrol(headeredcontentcontrol) does not change the datatemplates when I press the previous/next button. While debugging everything seems ok means I jump forth and back the ...