微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Silverlight 中 ComboBox+TreeView 实现的下拉控件

性能描述:

  ComboBox+TreeView实现的用户控件,设置数据源后,可以递归加载数据,支持双向绑定

  控件截图:

  

 

  XAML界面设计:

<UserControl x:Class="ChuanyeOA.CustomControls.ComboBoxTree"
    xmlns=
"http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x=
"http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d=
"http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc=
"http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable=
"d"
    d:DesignHeight=
"30" d:DesignWidth="300" xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk">
    
    <Grid x:Name="LayoutRoot">
        <ComboBox Height="23" Name="cbMain" HorizontalAlignment="Stretch" VerticalAlignment= DropDownopened="cbMain_DropDownopened" DropDownClosed="cbMain_DropDownClosed">
            <ComboBoxItem x:Name="cbItemTreeView">
                <ComboBoxItem.Content>
                    <sdk:TreeView Name="tvList" selecteditemchanged="tvList_selecteditemchanged" />
                </ComboBoxItem.Content>
            </ComboBoxItem>

            <"cbItemdisplay" >
            </ComboBoxItem>
        </ComboBox>
    </Grid>
</UserControl>

  后台CS代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

using System.Windows.Data;

using System.Collections;
using System.Reflection;

/********************************
 * 创建人:刘跃飞
 * 创建时间:2010-09-21
 * 功能描述:ComboBox+TreeView实现的用户控件,主要实现选择TreeView中的项做为ComboBox的项的功能
 * 属性描述:此控件包含以下几个属性
 * 1.ItemsSource:控件要绑定的数据源
 * 2.SelectedValuePath:选中的值的属性
 * 3.displayMemberPath:获取或设置为每个数据项要显示属性名称
 * 4.SelectedItem  当前选择的项
 * 5.SelectedValue  当前选择的值
 * 6.IsRecursionEnabled 设置是否启用递归加载数据源中的项 。需要设置ChildName和ParentName两个属性
 * 7.ChildMemberPath 递归加载数据源时,实体中的子级属性
 * 8. ParentMemberPath 递归加载数据源时,实体中的父级属性
 * 9.IsExpandAll 设置TreeView打开时是全部打开状态还是收缩状态 认为True打开状态
 * 
 * 使用方法
 * 注意事项:本控件设计尚不完善,【ItemsSource】属性需要在最后设置,否则,将提示错误
 * 1.界面上直接设置,例如:
 *  <myControl:ComboBoxTree SelectedValue="{Binding DepartmentID, Mode=TwoWay}" displayMemberPath="DepartName" SelectedValuePath="ID" IsRecursionEnabled="True" ChildMemberPath="ID" ParentMemberPath="ParentID"  ItemsSource="{Binding Data, Source={StaticResource a_DepartmentDomainDataSource}}">
 * 2.在后台代码中直接设置,例如:
 *           comboBoxTree1.displayMemberPath = "Name";
 *           comboBoxTree1.SelectedValuePath = "ID";
 *           comboBoxTree1.ChildMemberPath = "ID";
 *           comboBoxTree1.ParentMemberPath = "ParentID";
 *           comboBoxTree1.IsRecursionEnabled = true;
 *           comboBoxTree1.ItemSource = MyControls.DepartmentInfo.GetDepartment().AsEnumerable();
 * 3.如果启用递归加载,父级ID为【0】的项,将作为根节点加载,如果没有父级ID为【0】的项,将无法进行加载
 * 4.此控件用到了TreeView的ExpandAll扩展方法,需要添加【System.Windows.Controls.Toolkit】类库的引用,否则将提示找不到此方法
 * ***********************************/


namespace ChuanyeOA.CustomControls
{
    public partial class ComboBoxTree : UserControl
    {      
        public ComboBoxTree()
        {
            InitializeComponent();

            this.LayoutUpdated += new EventHandler(ComboBoxTree_LayoutUpdated);
        }

        void ComboBoxTree_LayoutUpdated(object sender, EventArgs e)
        {
            if (this.IsExpandAll)
            {
                //--展开所有节点
                tvList.ExpandAll();
            }
        }

        #region ItemSource 设置或获得绑定的数据源(属性
        
        public static readonly DependencyProperty ItemsSourceProperty =
            DependencyProperty.Register("ItemsSource"typeof(IEnumerable),255)">typeof(ComboBoxTree),255)">new PropertyMetadata(new PropertyChangedCallback(ItemsSourcePropertyChangedCallBack)));
        /// <summary>
        /// 数据源
        /// </summary>
        public IEnumerable ItemsSource
        {
            get
            {
                return (IEnumerable)this.GetValue(ItemsSourceProperty);
            }
            set
            {
                this.SetValue(ItemsSourceProperty,255)">value);
            }
        }
        //--属性更改的回调事件
        void ItemsSourcePropertyChangedCallBack(DependencyObject sender, DependencyPropertyChangedEventArgs args)
        {
            if (sender != null)
            {
                ComboBoxTree comboBoxTree = sender as ComboBoxTree;

                if (comboBoxTree.IsRecursionEnabled == false)
                {
                    // 以列表的方式加载数据
                    comboBoxTree.LoadTreeViewDataWithList();
                }
                else
                {
                    //以递归的方式加载数据                     comboBoxTree.LoadTreeViewDataWithRecursion();                 }             }         }

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐