|
- using System.Windows;
- using System.Windows.Controls;
-
- namespace BPA.UIControl
- {
- /// <summary>
- /// 树形列表
- /// </summary>
- [StyleTypedProperty(Property = "ItemContainerStyle", StyleTargetType = typeof(TreeListViewItem))]
- public class TreeListView : TreeView
- {
- /// <summary>
- /// 列集合
- /// </summary>
- public static readonly DependencyProperty ColumnsProperty =
- DependencyProperty.Register("Columns", typeof(GridViewColumnCollection), typeof(TreeListView), new PropertyMetadata(new GridViewColumnCollection()));
-
- static TreeListView()
- {
- DefaultStyleKeyProperty.OverrideMetadata(typeof(TreeListView), new FrameworkPropertyMetadata(typeof(TreeListView)));
- }
-
- /// <summary>
- /// 列集合
- /// </summary>
- public GridViewColumnCollection Columns
- {
- get { return (GridViewColumnCollection)GetValue(ColumnsProperty); }
- set { SetValue(ColumnsProperty, value); }
- }
-
-
- /// <inheritdoc/>
- protected override bool IsItemItsOwnContainerOverride(object item)
- {
- return item is TreeListViewItem;
- }
-
- /// <inheritdoc/>
- protected override DependencyObject GetContainerForItemOverride()
- {
- return new TreeListViewItem();
- }
- }
- }
|