Ejemplo n.º 1
0
        private void OnCompile(object sender, RoutedEventArgs e)
        {
            FlowchartEditor flowEditor = tabDynamic.SelectedContent as FlowchartEditor;

            if (null != flowEditor)
            {
                string strCompiledCodeText = flowEditor.GetCompiledCodeText();
                flowEditor._editor.ShowCompileBox(strCompiledCodeText);
            }
        }