Data templating is a feature of WPF and Xamarin.
When I bind Menu Items with an ObservableCollection, only the "inner" area of the MenuItem is clickable: alt text http://…
wpf xaml mvvm datatemplate menuitemI've got a set of ViewModels that I'm binding to the ItemsSource property of a TabControl. Let's call those ViewModels …
wpf tabcontrol datatemplateI have a resource dictionary: <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.…
wpf event-handling datatemplate resourcedictionaryUsing WPF, I have a ListBox control with a DataTemplate inside it. The relevant XAML code is shown below: <…
c# wpf xaml listbox datatemplateI was wondering how people handle a ListBox control that has no items? e.g. I want to bind a …
.net wpf listbox datatemplateI have a ListBox, that's bound to an ObservableCollection. Each ListBoxItem is displayed with a DataTemplate. I have a button …
wpf listbox datatemplate listboxitemI'm binding the ItemsSource of my MenuItem to an ObservableCollection in my ViewModel. Here is my xaml: <MenuItem Header="_…
wpf xaml styles datatemplate menuitemPossible Duplicate: Datatemplate inheritance I have several data types that are not subclasses, nor do they share an interface, but …
wpf inheritance datatemplate basedonI have a DataTemplate: <DataTemplate x:Key="myTemplate"> ... </DataTemplate> I want to use it as the …
wpf xaml datatemplate contentpresenterWhen I attempt to specify multiple DataTemplates for use by a ContentControl so that the correct one (based on Type) …
wpf xaml datatemplate