using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Windows.Forms;
namespace BQ_TreeView
{
/// <summary>
/// /重载树节点的类,这个可以扩展,便于填充更多的信息
/// </summary>
public class BQ_TreeNode:TreeNode
{
private string m_MatID;
public BQ_TreeNode() {}
/// <summary>
/// 构造函数
/// </summary>
/// <param name="strText">节点要显示的文本</param>
public BQ_TreeNode(string strText)
{
base.Text=strText;
}
public string MatID
{
get
{
return m_MatID;
}
set
{
m_MatID=value;
}
}
}
}