打印本文 打印本文 关闭窗口 关闭窗口
不用第归算法快速显示树,对于Oracle数据库(2)
作者:武汉SEO闵涛  文章来源:敏韬网  点击数3075  更新时间:2009/4/22 22:07:56  文章录入:mintao  责任编辑:mintao

namespace BQ_TreeView

{/// <summary>

    /// BQ_TreeView 的摘要说明

    /// </summary>

    public class BQ_TreeView : System.Windows.Forms.TreeView

    {

        private System.ComponentModel.Container components = null;

        private DataTable m_tb=null;

        private string m_RootMatID;

        BQ_TreeNode RootNode=null;

        ArrayList alNode=new ArrayList ();

        public BQ_TreeView()

        {

            InitializeComponent();

        }

        protected override void Dispose( bool disposing )

        {

            if( disposing )

            {

                if(components != null)

                {

                    components.Dispose();

                }

            }

            base.Dispose( disposing );

        }

 

        #region

        private void InitializeComponent()

        {

            components = new System.ComponentModel.Container();

        }

        #endregion

 

        /// <summary>

        ///定义数据源

        /// </summary>

        public DataTable TreeDataSource

        {

            set

            {

                m_tb=value;        

            }

        }

      &n

[1] [2] [3] [4]  下一页

打印本文 打印本文 关闭窗口 关闭窗口