Esempio n. 1
0
        void Properties_OptionsChanged(PropertyBlock[] blocks)
        {
            frmTableEditor tableEditor = dockPanel1.ActiveDocument as frmTableEditor;

            if (tableEditor != null)
            {
                tableEditor.ChangeBlocks(blocks);
            }
        }
Esempio n. 2
0
        void systemEditor_DataManipulated(TableBlock newBlock, TableBlock oldBlock)
        {
            frmTableEditor tableEditor = dockPanel1.ActiveDocument as frmTableEditor;

            if (tableEditor != null)
            {
                tableEditor.ChangeBlocks(new List <TableBlock> {
                    newBlock
                }, new List <TableBlock> {
                    oldBlock
                });
            }
        }