Tagged Questions
0
votes
2answers
39 views
DataTemplate not being applied
I have a window in which I want to display dynamic content based on a datatemplate.
The XAML looks roughly like this:
<Window x:Class="Report.ControlLibrary.ReportHost"
...
0
votes
0answers
33 views
Updating DataTemplate on LoadingRowDetails Event using MVVM
I have a Grid which has a childGrid inside DataTemplate:
<RadGridView Grid.Row="0" x:Name="parentRadGrid" LoadingRowDetails="parentRadGrid_LoadingRowDetails">
...
0
votes
0answers
65 views
Change RowDetailsTemplate based on combobox in Datagrid Row
I have a WPF & MVVM application with a datagrid where I want to be able to change the DataTemplate of the RowDetails based on the selectedvalue of a combobox within the same row. I don't want to ...
1
vote
2answers
42 views
Associating View and ViewModel pairs in XAML without repetitive code
I have read a very nice tutorial about letting ViewModels do their stuff while the views just switch themselves via databinding with DataTemplates.
I succesfully made a window which has an ...
2
votes
1answer
50 views
change the datatemplate for the rowdetails of a datagrid based on row value
I have a wpf application using MVVM principles. Within this application I have a datagrid where I want to have each row choose between one of 6 possible datatemplates based on the value of an ...
1
vote
1answer
51 views
Change style based on data
Consider below XAML =>
<fluent:Ribbon x:Name="MenuRibbon"
Title="title"
SnapsToDevicePixels="True">
<fluent:RibbonTabItem ...
1
vote
1answer
241 views
Attached Behaviors in Windows Store Apps with MVVM Light
I've been trying to use Attached Behaviors in a simple Windows Store App using the MVVM Light framework. Since we can't use System.Windows.Interactivity, as in Windows Phone, I've been using both ...
0
votes
1answer
21 views
Displaying different instances of UserControl through DataTemplate
<UserControl x:Name="AView" .... />
public class AViewModel { .. }
<UserControl x:Name="ParentView">
<UserControl.Resources>
<DataTemplate DataType={x:Type ...
0
votes
1answer
220 views
DataTemplate to show Buttons in WPF ListView while maintaing Properties
In WPF, I have a ListView of 2 columns and the first column needs to be a button. Correct me if I'm wrong, but the only way I found to implement a button in a ListView is to use a DataTemplate. The ...
0
votes
1answer
192 views
WPF MVVM DataTemplate: Inject Template ViewModel with Data from parent Viewmodel
I have an ObservableCollection in my parent ViewModel which I want to display in the parent View. So I've defined a child View and a child ViewModel handling button clicks.
How do I get each item from ...
0
votes
1answer
99 views
Modifying TabControl's header
So I'm adding my views directly to the TabControl's Items collection at runtime (instead of creating TabItems around them and addings those TabItems to TabControl). The views expose a property ...
0
votes
2answers
47 views
Get reference to an item in a HeaderedItemsControl
XAML:
<HeaderedItemsControl ItemsSource="{Binding FooCollection}">
<HeaderedItemsControl.ItemTemplate>
<DataTemplate>
<StackPanel>
<TextBlock ...
0
votes
1answer
258 views
Bind to main DataContext from TabControl's DataTemplate
I'm trying to use a single DataGrid as the content for each tab in a tab control (I'll then reload the contents of the grid, to show models at different statuses when clicking on different tabs).
...
0
votes
0answers
53 views
Error using class from different project in Data Template wpf
<TabControl ItemsSource="{Binding OpenTabs}" Grid.Row="1">
<TabControl.Resources>
<DataTemplate DataType="{x:Type viewModel:HomeViewModel}">
...
1
vote
3answers
251 views
WPF MVVM Access Element inside ItemsControl DataTemplate
I need to get the values from my ComboBoxes that reside in an ObservableCollection being iterated through by an ItemsControl. And I need to store them in a separate data structure, at least I think I ...
0
votes
2answers
150 views
Why doesn't TreeView automatically select DataTemplates for Childnodes after defining TreeView.ItemTemplate?
I don't understand what wpf does here (using .NET 3.5 with C#):
in my Application Resources I defined several DataTemplates and HierarchicalDataTemplates for different Types of ViewModels. So far ...
0
votes
2answers
414 views
WPF MVVM: How to enable/disable buttons in ListBox if I'm using a DataTemplate
I have a WPF/MVVM app with a ListBox which displays data through a DataTemplate. I managed to change the selected item in the ListBox when pressing a button so the CommandParameter is linked to the ...
0
votes
1answer
127 views
vary a xaml template by type
Below is a piece of a DataTemplate that defines a strip if commands (buttons with images) for contacting clients. Currently defined for telephone contacts, there are several more commands, so I want ...
0
votes
1answer
127 views
MVVM - NullReferenceException when set ControlTemplate that has DataGrid
In one of my views I have a ContentControl bound to a DataTemplate defined as resource in the same page. Inside it, I have a control filled at runtime with different controlTemplates (four) by setting ...
2
votes
1answer
359 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 ...
0
votes
0answers
72 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
3answers
323 views
Using MEF, how to export a view for an ItemsControl?
enter code hereMaybe the title is not so specific.
The situation which I'm having is. I've got an ItemsControl where I insert many ViewModels, and this ItemsControl should have to show the View ...
0
votes
1answer
192 views
Make default checked one particular checkbox in combobox with checkbox in data template
I have combobox with checkbox in data template. Combobox ItemSource property is binded with collection in ViewModel. I want to make one particular checkbox checked for default. How can I do this?
...
0
votes
2answers
388 views
Own DataTemplateSelector MVVM
I'm using a MVVM-Pattern with a ModelView-First approach. This works fine, so far.
Now I have a UserControl (View) which should display various content depending on a Property located in my ViewModel.
...
0
votes
1answer
284 views
Using DataTemplates for View Model.
First of all i'm facing this problem when trying to upgrade Avalon Dock from 1.3 to 2.0.
Anyway, I have a collection of ViewModel, which uses the data template and it turns each ViewModel into a ...
1
vote
2answers
851 views
How to make a WPF DataGrid display a ViewModel collection with binding and a DataTemplate
First off, an apology as I am sure this is question's answer is quite simple. Nonetheless I still cannot seem to find an answer.
This is my first week using WPF. I simply wish to display the ...
0
votes
0answers
165 views
DataTemplate disappears when moving items in ObservableCollection
I have a CellTemplate for a column in a ListView. The CellTemplate contains a ComboBox which has an ItemTemplate. Both ItemsSource and SelectedItem is bound to another ViewModel.
The ListView is bound ...
2
votes
2answers
1k views
WPF context menu whose items are defined as data templates
I have a list view that displays a collection of items, each item has as its underlying data a view model (MVVM).
What I would like to do is display different menu items within the context menu when ...
1
vote
1answer
297 views
How To improve wpf user control performance?
I have a usercontrol, and when I have lots of that in a window, it takes long time to get loaded.
Will it get better if I change it to a customcontrol or maybe a DataTemplate with a class and attached ...
0
votes
1answer
380 views
Bind DataTemplate's parent's visibility (IsVisible or Visibility) to the ViewModel
Starting off with a classic datatemplate:
<DataTemplate x:Key="RegularTemplate">
<Grid>
...
</Grid>
</DataTemplate>
assume the ViewModel object that is being ...
0
votes
2answers
280 views
Binding templated item to Converter's Value property in DataTemplate
I'm using Silverlight 4.
I have a DataTemplate defined for a DataGrid which allows me to successfully display values to my liking. I have a Rating control inside of this DataTemplate that has a ...
0
votes
0answers
126 views
Toolbar in DataTemplate
Is it possible to define a toolbar via data template and than add it to a toolbartray?
In a resource dictionary I have this data template:
<DataTemplate DataType="{x:Type ...
0
votes
1answer
160 views
Position Views side by side in main view in WPF with MVVM?
I have a WPF desktop app built with MVVM and have all the views available in MainWindow.xaml. The problem is that the views are listed in the order they appear in Window.Resources, each stretching ...
0
votes
1answer
315 views
DisplayStateBehavior not initially applying state transition in listbox item template
I have a listbox item template that contains visual states. I have DisplayStateBehaviors that set the states to either the on/off states. My implementation only 1/2 works. On initial display, the ...
0
votes
1answer
345 views
How do I set view/view model data template at runtime?
This MVVM stuff is making my head hurt. I have an application which has a list of editors in a left pane. On the right is a tab control where the editors will be displayed. I have a main ...
0
votes
1answer
786 views
Stop TabControl from recreating its children
I have an IList of viewmodels which are bound to a TabControl. This IList will not change over the lifetime of the TabControl.
<TabControl ItemsSource="{Binding Tabs}" SelectedIndex="0" >
...
0
votes
1answer
106 views
isselected on second listview same as on the first
I got a grid with 2 listviews in it. The listviews are the same(Only itemsource is different for other items ofc) the datatemplate = Stackpanel that has 1 Label and an other grid. Now I want the grid ...
5
votes
2answers
1k views
Where should I define my datatemplates?
I'm trying to work out the best way to couple my Views and ViewModels in MVVM and I've settled on the ViewModel-first approach using typed DataTemplates, as described in this article and in this ...
3
votes
1answer
667 views
Enable a TabItem via Binding
I want to use MVVM in an application where the different pages are TabItems.
For this I use an observable collection of my view models (Items) and bind it to the tabcontrols ItemSource.
For each ...
5
votes
2answers
839 views
DataTemplates in WPF
I have a general question about data templates in WPF. Let's say I have an abstract class called "Question," and various subclasses like "MathQuestion," "GeographyQuestion," etc. In some contexts, ...
0
votes
1answer
417 views
Get instantiated UIElement of ContentTemplate from TabControl
I have a TabControl where the ContentTemplate is defined by a DataTemplate containing a ContentPresenter. The mapping UIElement class is defined by a DataTemplate for the specific ViewModel type. It ...
-1
votes
1answer
150 views
TWO views are getting new'ed when displaying viewmodel
I have an mvvm framework much like Josh Smith's sample. Problem is that I've just discovered that every time I display a viewmodel, for some reason, the associated view constructor is firing TWICE. ...
0
votes
1answer
364 views
Bind image in templated ListBox to ViewModel property
TL;DR - I had a binding error. Tired eyes miss things.
I have implemented a multi-select CheckBox list using a ListBox as the container. Now, beside each checkbox in the list I want to display an ...
1
vote
1answer
89 views
how to stop template being created in a specific condition
I currently have a list of categories. For each category a template is created with an expander and datagrid which will display a list of items associated with the category.
My problem is that if ...
1
vote
1answer
551 views
TabControl within TabItem
I have tabs bound to an observable collection property in a ViewModel. The DataTemplate for each view model is a user control containing an inner tab control. When I switch tabs in the inner tab ...
0
votes
2answers
41 views
Dealing with DataTemplates
Is there some obvious method for dealing with DataTemplates of which I am unaware?
For instance:
I have a ContentControl which will be used to display the various application views. As far as I am ...
1
vote
1answer
234 views
Changing DataTemplate with Property Binding in Silverlight
I'm trying to implement this using Eugene Akinshin's code from here: http://forums.silverlight.net/t/237947.aspx/1
It seems like a really nice way to bind to already-existing properties and means the ...
0
votes
2answers
163 views
Animation when changing ContentTemplate
I have a window where different controls had to be displayed over time. I searched for a solution with using the mvvm pattern and ended up with this
<ContentControl Content="{Binding}">
...
0
votes
1answer
384 views
Silverlight Binding To A User Control Within A DataTemplate
In Silverlight, I have a DataTemplate which is bound to an object which contains a property which holds a UserControl.
Within the DataTemplate, I want to bind to the property which holds the ...
1
vote
2answers
826 views
Silverlight how to set the datacontext of a listbox item to the root viewmodel for the view that it is in
Within my project I have a Listbox which uses a datatemplate. Within this data template I have a button. When the listbox generates results the item source for this listbox is set to some property ...

