Represents a control that can be used to present a collection of items.
I'd like to create an ItemsControl where child items are placed like a WrapPanel, but child Items should take as …
wpf xaml custom-controls itemscontrol wrappanelI am creating a WPF form. One of the requirements is that it have a sector-based layout so that a …
wpf dynamic wpf-controls grid itemscontrolI'm trying to create an ItemsControl that uses a grid as its ItemsPanel in such a way that it has …
wpf grid itemscontrol itemssourceI'm writing a custom ItemsControl (a tabbed document container), where each item (tab) can remove itself from the UI when …
wpf itemscontrol itemssourceIs there a nice way (except retemplating the whole TreeViewItem.Template) to disable selection in TreeView? I am basically looking …
wpf xaml treeview selection itemscontrolI'm using a custom template in my itemscontrol to display the following result: item 1, item 2, item3, I want to change …
wpf templates itemscontrolIn my presenter I have this property: public List<string> PropertyNames { get; set; } And I want to list …
c# wpf xaml itemscontrolI'm displaying a List<string> collection in an ItemsControl. The problem is that there is no spacing between …
wpf xaml .net-4.0 itemscontrolWhat does the Panel.IstItemsHost attached property used for? I see plenty of examples of people setting it on the …
wpf itemscontrolI have an ItemsControl whose for the ItemTemplate DataTemplate contains a Button. I want the Command on the button to …
wpf data-binding xaml datatemplate itemscontrol