我想从现有的ItemContainer
对象中确定ItemsControl
类型。
var item = control as ItemsControl;
//HOW to get child container Type?
示例混合如何做到这一点:
Blend以某种方式确定当前TabControl
类型子项为TabItem
。
如何在代码中做同样的事情?
答案 0 :(得分:8)
从ItemsControl
派生的大多数类都有StyleTypedPropertyAttribute
。获得Property
等于"ItemContainerStyle"
的那个。此属性上的StyleTargetType
属性应为您提供项类型。
请注意,您必须注意不要从基类获取属性。此外,虽然这适用于大多数类型(TabControl
,ListBox
),但某些类(例如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) }
};