Tagged Questions
Data templating is a feature of WPF that lets you completely redefine the way a control look and act.
23
votes
3answers
5k views
Difference between Control Template and DataTemplate in WPF
What is difference between a ControlTemplate and a DataTemplate in WPF?
21
votes
1answer
3k views
WPF listbox empty datatemplate
I was wondering how people handle a ListBox control that has no items? e.g. I want to bind a list of search results but if no results are found i would like to display "No results found".
The way i ...
19
votes
4answers
17k views
Silverlight 3: ListBox DataTemplate HorizontalAlignment
I have a ListBox with it's ItemTemplate bound to a DataTemplate. My problem is I cannot get the elements in the template to stretch to the full width of the ListBox.
<ListBox x:Name="listPeople" ...
19
votes
2answers
6k views
Concatenate strings instead of using a stack of TextBlocks
I want to show a list of Customer objects in a WPF ItemsControl. I've created a DataTemplate for this:
<DataTemplate DataType="{x:Type myNameSpace:Customer}">
<StackPanel ...
18
votes
1answer
4k views
Animate WPF Datatemplate when item added to Listbox?
In my project I have a WPF Listbox bound to an ObservableCollection. Every time I add a new item to the Collection the same item is added to the Listbox automaticly.
To display the items in the ...
13
votes
1answer
17k views
How do I build a DataTemplate in c# code?
I am trying to build a dropdown list for a winform interop, and I am building the dropdown in code. However, I am having a problem getting the data to bind based on the DataTemplate I specify.
What ...
11
votes
1answer
1k views
What is a ViewModelLocator and what are its pros/cons compared to DataTemplates?
Can someone give me a quick summary of what a ViewModelLocator is, how it works, and what the pros/cons are for using it compared to DataTemplates?
I have tried finding info on Google but there seems ...
10
votes
2answers
2k views
Making a DataTemplate blendable
How can I make a Datatemplate for a ViewModel blendable (designable in expression blend). When I go to resources and try to edit the DataTemplate directly all I see on the Drawingborad is a blank ...
9
votes
5answers
2k views
WPF - Making an animation's execution conditional on a property of the bound data item
I have a data object -- a custom class called Notification -- that exposes a IsCritical property. The idea being that if a notification will expire, it has a period of validity and the user's ...
8
votes
5answers
6k views
How can I bind an ObservableCollection of ViewModels to a MenuItem?
When I bind Menu Items with an ObservableCollection, only the "inner" area of the MenuItem is clickable:
In my View I have this menu:
<Menu>
<MenuItem
Header="Options" ...
8
votes
2answers
814 views
How can I factor out a DataTemplate's binding in WPF?
I have a DataTemplate I want to reuse. The part I want to factor out is the binding, because it's the only thing that changes. My DataTemplate looks roughly like this. (There's actually quite a bit ...
7
votes
1answer
3k views
Using MEF to import a WPF DataTemplate?
I was looking at MEF as an extensibility framework, and I'm pretty much sold, except for one point:
Let's say I want to import both a ViewModel and a View to display it. I think the "right" way to ...
7
votes
2answers
7k views
Is it possible to bind an Event in a Silverlight DataTemplate?
Is it possible to bind an Event in a Silverlight DataTemplate? If so, what is the best way to do it?
For example, say you've created a DataTemplate that has a Button in it, like this:
...
6
votes
2answers
123 views
Resize my border when a VerticalScrollBar appear
Let me show you part of my XAML code :
<ListBox Grid.Row="1" ScrollViewer.HorizontalScrollBarVisibility="Disabled"
ScrollViewer.IsDeferredScrollingEnabled="True"
...
6
votes
1answer
343 views
WPF DataTemplate resets some dependency properties when unloaded
I have a DataTemplate consisting of a media element control that is derived from MediaElementBase from the WPF Media Kit library. The MediaElementBase class provides the two properties, LoadedBehavior ...
6
votes
2answers
597 views
How to build a generic/re-usable modal dialog for WPF following MVVM
I would like to build a generic/re-usable modal dialog that I can use in our WPF (MVVM) - WCF LOB application.
I have a Views and associated ViewModels that I would like to display using dialogs. ...
6
votes
1answer
2k views
Disable a single wpf listbox item
Does anyone know if and how one can disable one or more listbox items in a wpf lisbox without disabling the entire listbox?
Preferably I would have a DataTrigger which, when a certain Binding value ...
6
votes
2answers
2k views
DataTemplate-driven View injection with MVVM
I have a container view that looks something like this
<UserControl x:Class="Views.ContainerView">
<UserControl.Resources>
<ResourceDictionary>
<DataTemplate ...
6
votes
3answers
2k views
Selecting a ListBoxItem when its inner ComboBox is focused
I have a DataTemplate that will be a templated ListBoxItem, this DataTemplate has a
ComboBox in it which when it has focus I want the ListBoxItem that this template
represents to become selected, this ...
6
votes
6answers
3k views
WPF Memory Usage
Application:
WPF Application consisting of a textbox on top and a listbox below
Users type a string in the TextBox to find employees, and search results are displayed in the ListBox
ListBox uses ...
6
votes
1answer
6k views
WPF ListBox bind to index of the item
It's easy to bind something to the SelectedIndex of the ListBox,
but I want every item in the ListBox be able to bind to it's index in the list.
Might sound weird, so here's what I'm trying to do:
...
5
votes
2answers
55 views
How to do datatemplate for items in listbox?
I have an XML file (see below) and can display all the Product Names in a listbox.
I want each entry in the listbox to display Product Name followed by Price, not just Product Name.
How do I do the ...
5
votes
2answers
387 views
Animate WP7 datatemplate element when first added to listbox
Hey all, I'm trying to apply an animation to any element that gets added to a datatemplate in WP7's subset of silverlight. I'm having some issues though. While it appears to be quite possible in WPF ( ...
5
votes
2answers
2k views
Silverlight 4 DataTemplate DataType
Silverlight 4 is out and it seems we've missed the DataTemplate DataType functionality in this release again, which is pretty pivotal for MVVM support IMHO. For my WPF apps, at this point, I'm pretty ...
5
votes
2answers
777 views
DataTemplate + MVVM
I'm using MVVM and each View maps to a ViewModel with a convention. IE
MyApp.Views.MainWindowView
MyApp.ViewModels.MainWindowViewModel
Is there a way to remove the DataTemplate and do it in C#? with ...
5
votes
2answers
1k views
Specifying DataTemplate.DataType with a custom type extension
I have this markup extension
public class NullableExtension : TypeExtension {
public NullableExtension() {
}
public NullableExtension( string type )
: base(type) {
}
...
5
votes
3answers
3k views
WPF, UserControl or DataTemplate
Recently I'm trying to reuse some UI elements in my application. When I started programming with WPF I'm told that DataTemplate is the best way to reuse UI elements. You can define a template for your ...
5
votes
2answers
733 views
How can I bind the nested viewmodels to properties of a control
I used Microsoft's Chart Control of the WPF toolkit to write my own chart control.
I blogged about it here. My Chart control stacks the yaxes in the chart on top of each other. As you can read in the ...
5
votes
1answer
4k views
Bind to ItemsControl's DataContext from inside an ItemTemplate
I have an ItemsControl whose for the ItemTemplate DataTemplate contains a Button. I want the Command on the button to bind to a Command on the DataContext of the ItemsControl, not the ItemTemplate. I ...
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>
...
5
votes
3answers
5k views
WPF - Databind to a StackPanel using DataTemplates
I've modified my question since it has changed focus when trying things out.
I narrowed the problem down to the following...
I try to bind the selected Item of a TreeView to a StackPanel (or some ...
5
votes
1answer
3k views
Specify Command for MenuItem in a DataTemplate
I have a context menu. It's bound to some collection and it has a defined ItemTemplate like this:
<ContextMenu
ItemsSource={Binding ...}
ItemTemplate={StaticResource itemTemplate}
...
5
votes
3answers
3k views
Focus on a TextBox in a DataTemplate
I have DataTemplate containing a TextBox. I'm setting this template to a listbox item on a selection.
I'm unable to set focus to textbox in the template. I tried to call MyTemplate.FindName, but it ...
5
votes
2answers
10k views
How to bind from a ContentTemplate to the surrounding custom Control? [closed]
I've got the following user control:
<TabItem
x:Name="Self"
x:Class="App.MyTabItem"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
4
votes
1answer
211 views
Styling a Textblock autogenerated in a ContentPresenter
As I saw, a lot of people ran into this exact problem but I can't understand why my case is not working and it is starting to drive me crazy.
Context: I have a DataGrid which is to be colored ...
4
votes
1answer
140 views
Creating a DataTemplate in Code: Can I use the Template property?
I'm attempting to use a DataTemplateSelector with a particular third-party WPF grid control, and I'm having trouble determining if the issues I'm having are a bug in the control or my own lack of ...
4
votes
1answer
310 views
datatemplate in app.xaml is not getting picked up without any styles?
I have a DataTemplate in app.xaml that binds a view to a viewmodel.
<Application.Resources>
<DataTemplate DataType="{x:Type vm:someviewmodeltype}">
<vw:somevwcontrol />
...
4
votes
1answer
1k views
How to use template binding inside data template in custom control (Silverlight)
I am trying to create control which will take ItemsSource and InnerTemplate and will show all the items wrapped in CheckBoxes.
The control has 2 dependency properties:
public static readonly ...
4
votes
1answer
151 views
Listbox where items have more than one selectable region
I'm not sure about the best way to implement this in WPF, so I'll state my problem first.
I have a collection of frames. Each frame has two images. Let's say I have 10 frames giving a total of 20 ...
4
votes
2answers
196 views
How to limit column height to another one's?
I have a grid in WPF which is made of 4 rows along 2 columns where column 1 holds an Image control and column 2 holds 4 Textblocks. Problem is, the Image control sizes itself to the Image size and ...
4
votes
2answers
1k views
Datatemplate inheritance
Is it possible to have DataTemplate composition or inheritance (similar to "BasedOn" in Styles)? There are 2 instances where I need that.
1) For inherited classes: I have a base class with several ...
4
votes
3answers
422 views
WPF DataTrigger
I'm working on a board game to get a grip on WPF and I'm stuck after trying the whole night to get this part working.
The following code belongs to the 'House' user control and works just fine on the ...
4
votes
1answer
1k views
WPF: TabControl & DataTemplates
I just want to understand the following scenario. Where I am implementing a <TabControl> bound to a ObservableCollection<TabViewModel>
No Data Templates
When I don't have any ...
4
votes
1answer
519 views
How to access a control placed inside data template of listbox?
Hi I have the following code:
<ListBox x:Name="foldersListBox" Grid.Column="0" MouseLeftButtonUp="foldersListBox_MouseLeftButtonUp"
BorderThickness="0" ...
4
votes
3answers
614 views
WPF Some styles not applied on DataTemplate controls
I am trying to learn something about WPF and I am quite amazed by its flexibility.
However, I have hit a problem with Styles and DataTemplates, which is little bit confusing.
I have defined below ...
4
votes
2answers
2k views
'Default' text for templated combo box
I have a combo box that is based on a data template the includes check boxes like such:
<ComboBox x:Name="cboComplex" Text="Select days...">
<ComboBox.ItemTemplate>
...
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 ...
4
votes
1answer
550 views
Apply DataTemplate to type derived from FrameworkElement
I've got a list of custom "pages" in my app. Each page represents a different UI view. They have some simple properties, like a string title and an icon, but they also have a number of complex ...
4
votes
4answers
3k views
In WPF, how to databind to the Window DataContext from inside the DataTemplate of a contained ListBox?
I have a WPF Window with a view model set as its DataContext, and have a ListBox with a DataTemplate and its ItemsSource bound to the view model, like in the following example:
View model:
using ...
4
votes
1answer
3k views
WPF DataTemplate - x:Key vs DataType=“{x:Type XXXX”)
I have a DataTemplate that I want to find using the FrameworkElement.FindResource(). To do that I need to have a key on the data template.
The problem is that x:key and assigning a data type are ...