Exemple #1
0
        private void btnRender_Click(object sender, RoutedEventArgs e)
        {
            var processor = new QuickGraphProcessor(_currentSolution);

            Compose(processor);
            string filename = processor.ProcessSolution();

            var graphViz = new GraphVizService();

            graphViz.ExecGraphViz(filename, tbOutputFilename.Text);

            Process.Start(tbOutputFilename.Text);
        }
        private void btnRender_Click(object sender, RoutedEventArgs e)
        {
            var processor = new QuickGraphProcessor(_currentSolution);
            Compose(processor);
            string filename = processor.ProcessSolution();

            var graphViz = new GraphVizService();
            graphViz.ExecGraphViz(filename, tbOutputFilename.Text);

            Process.Start(tbOutputFilename.Text);
        }