#35 – ItemsControl
August 16, 2010 2 Comments
ItemsControl is another WPF class that inherits from Control and serves as a base class for other controls. Controls that inherit from ItemsControl display a collection of items.
Controls that derive from ItemsControl typically get a list of items to display using data binding, binding to an object that implements IEnumerable.
Controls that inherit directly or indirectly from ItemsControl include: Menu, ContextMenu, ComboBox, ListBox, ListView, TabControl, DataGrid, StatusBar, ToolBar and TreeView.