예제 #1
0
파일: editor.cs 프로젝트: longsamaa/THESIS
        private void setHTMLSource(string source)
        {
            int          Index  = editorGrid.CurrentRow.Index;
            HashSet <tb> dict   = mainForm.dictionary;
            tbProc       tbproc = new tbProc();
            string       html   = tbproc.checkTBInSegment(dict, source);

            editorGrid.Rows[Index].Cells["htmlSourceColumn"].Value = html;
        }
예제 #2
0
        private void loadTB()
        {
            tbProc tbProc = new tbProc();

            dictionary = tbProc.readTB();
        }