如何获取WPF ItemsControl的常规ItemContainer类型

时间:2012-09-15 11:32:40

标签: wpf silverlight user-controls wpf-controls itemscontrol

我想从现有的ItemContainer对象中确定ItemsControl类型。

   var item = control as ItemsControl;
    //HOW to get child container Type?

示例混合如何做到这一点:

enter image description here

Blend以某种方式确定当前TabControl类型子项为TabItem

如何在代码中做同样的事情?

1 个答案:

答案 0 :(得分:8)

ItemsControl派生的大多数类都有StyleTypedPropertyAttribute。获得Property等于"ItemContainerStyle"的那个。此属性上的StyleTargetType属性应为您提供项类型。

请注意,您必须注意不要从基类获取属性。此外,虽然这适用于大多数类型(TabControlListBox),但某些类(例如DataGrid)根本没有使用此属性进行注释。

以下是我用于内置框架类型的列表:

var _itemsContainerTypeByContainerType = new Dictionary<Type, Type> {
    { typeof(ComboBox), typeof(ComboBoxItem) },
    { typeof(ContextMenu), typeof(MenuItem) },
    { typeof(DataGrid), typeof(DataGridRow) },
    { typeof(DataGridCellsPresenter), typeof(DataGridCell) },
    { typeof(DataGridColumnHeadersPresenter), typeof(DataGridColumnHeader) },
    { typeof(HeaderedItemsControl), typeof(ContentPresenter) },
    { typeof(ItemsControl), typeof(ContentPresenter) },
    { typeof(ListBox), typeof(ListBoxItem) },
    { typeof(ListView), typeof(ListViewItem) },
    { typeof(Menu), typeof(MenuItem) },
    { typeof(MenuBase), typeof(MenuItem) },
    { typeof(MenuItem), typeof(MenuItem) },
    { typeof(MultiSelector), typeof(ContentPresenter) },
    { typeof(Selector), typeof(ContentPresenter) },
    { typeof(StatusBar), typeof(StatusBarItem) },
    { typeof(TabControl), typeof(TabItem) },
    { typeof(TreeView), typeof(TreeViewItem) },
    { typeof(TreeViewItem), typeof(TreeViewItem) }
};