internal TableNodeHandler(TreeNode node, UDTTable table)
        {
            Node = node;
            Table = table;

            this.Editors = new List<IEditable>();
            IEditable uieditor = new TableUIEditable("資料表-" + Table.Name, this);
            Editors.Add(uieditor);

            IEditable xmlEditor = new TableXmlEditable("資料表-" + Table.Name, this);
            Editors.Add(xmlEditor);

            CurrentEditor = uieditor;
        }
Exemplo n.º 2
0
        internal TableNodeHandler(TreeNode node, UDTTable table)
        {
            Node  = node;
            Table = table;

            this.Editors = new List <IEditable>();
            IEditable uieditor = new TableUIEditable("資料表-" + Table.Name, this);

            Editors.Add(uieditor);

            IEditable xmlEditor = new TableXmlEditable("資料表-" + Table.Name, this);

            Editors.Add(xmlEditor);

            CurrentEditor = uieditor;
        }