⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tempnode.cs

📁 通过数据库结构自动 生成三层结构代码,相当不错的一款软件
💻 CS
字号:
namespace Codematic.UserControls
{
    using System;
    using System.Windows.Forms;

    public class TempNode : TreeNode
    {
        private string filepath;
        private string nodeid;
        private string nodetype;
        private string parentid;

        public TempNode()
        {
        }

        public TempNode(string NodeName)
        {
            base.Text = NodeName;
        }

        public string FilePath
        {
            get
            {
                return this.filepath;
            }
            set
            {
                this.filepath = value;
            }
        }

        public string NodeID
        {
            get
            {
                return this.nodeid;
            }
            set
            {
                this.nodeid = value;
            }
        }

        public string NodeType
        {
            get
            {
                return this.nodetype;
            }
            set
            {
                this.nodetype = value;
            }
        }

        public string ParentID
        {
            get
            {
                return this.parentid;
            }
            set
            {
                this.parentid = value;
            }
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -