示例#1
0
        public void InitTest()
        {
            TOCHandler target   = new TOCHandler(); // TODO: Initialize to an appropriate value
            Document   document = null;             // TODO: Initialize to an appropriate value
            PdfWriter  writer   = null;             // TODO: Initialize to an appropriate value

            target.Init(document, writer);
        }
示例#2
0
        private void openTOC(TOCHandler tocHnd)
        {
            treeViewTOC.BeginUpdate();
            treeViewTOC.Nodes.Clear();

            foreach (TOCHandler.chunk chunk in tocHnd.chunkList)
            {
                blockToTreeView(chunk);
            }

            treeViewTOC.EndUpdate();
        }
示例#3
0
        private void openTOCFile(string tocbin, string gamePath)
        {
            tocHnd = new TOCHandler(tocbin, ME3Paths.gamePath);

            openTOC(tocHnd);
        }