Data templating is a feature of WPF and Xamarin.
I have a ListBox which binds to a child collection on a ViewModel. The listbox items are styled in a …
wpf xaml data-binding datatemplate relativesourceI am trying to build a dropdown list for a winform interop, and I am creating the dropdown in code. …
c# wpf datatemplateWhat is difference between a ControlTemplate and a DataTemplate in WPF?
wpf datatemplate controltemplateI have a CheckedListBox control which is created by adding a DataTemplate with a CheckBox to a ListView. The problem …
wpf listview datatemplate gridviewcolumnI want to show a list of Customer objects in a WPF ItemsControl. I've created a DataTemplate for this: <…
.net wpf datatemplateThe following DataTemplate.DataTrigger makes the age display red if it is equal to 30. How do I make the age …
wpf xaml datatemplate datatriggerI have a ListBox DataTemplate in WPF. I want one item to be tight against the left side of the …
wpf layout listbox datatemplateI have a list of Games which just has an ID, a Date, and a Time. I am setting this …
c# wpf xaml listview datatemplateCan someone give me a quick summary of what a ViewModelLocator is, how it works, and what the pros/cons …
wpf mvvm datatemplate mvvm-light viewmodellocatorI've got the following.. <ComboBox Grid.Row="2" Grid.Column="2" Grid.RowSpan="2" ItemsSource="{Binding ShipperAddresses}" Text="{Binding ShipperAddress}" Margin="85,2,0,2"> &…
wpf triggers datatemplate templating