예제 #1
0
파일: MDIUI.cs 프로젝트: mkubala/extraCell
        private void newDocumentForm(string path)
        {
            DocumentForm documentForm = new DocumentForm(this);

            documentForm.Show();
            if (path != null)
            {
                documentForm.loadDocument(path);
            }

            documentForm.extraCellTable.isInitialized = true;

            documentForm.extraCellTable.selectCell(1, 1);
            documentForm.extraCellTable.selectCell(0, 0);
        }
예제 #2
0
파일: MDIUI.cs 프로젝트: mkubala/extraCell
        private void newDocumentForm(string path)
        {
            DocumentForm documentForm = new DocumentForm(this);
            documentForm.Show();
            if(path != null)
                documentForm.loadDocument(path);

            documentForm.extraCellTable.isInitialized = true;

            documentForm.extraCellTable.selectCell(1, 1);
            documentForm.extraCellTable.selectCell(0, 0);
        }