Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionaryTracking.Views/3.4/GenealogyGraphDialog.cs @ 10264

Last change on this file since 10264 was 10264, checked in by bburlacu, 10 years ago

#1772: Created new branch for the redesigned version of the tracking plugin

File size: 340 bytes
Line 
1using System.Windows.Forms;
2
3namespace HeuristicLab.EvolutionaryTracking.Views {
4  public partial class GenealogyGraphDialog : Form {
5    public SymbolicExpressionTreeGenealogyGraph Graph {
6      set { genealogyGraphChart1.Graph = value; }
7    }
8
9    public GenealogyGraphDialog() {
10      InitializeComponent();
11    }
12  }
13}
Note: See TracBrowser for help on using the repository browser.