예제 #1
0
        public TreeVisualizationPage()
        {
            _conceptGraphViewModel = new ConceptGraphViewModel();
            DataContext            = _conceptGraphViewModel;
            InitializeComponent();

            Instance = this;
        }
예제 #2
0
 private void InitPages()
 {
     _ClassificationPage    = new Frames.Classifications(_SQLClient);
     _ConceptPage           = new Frames.Concepts(_SQLClient);
     _PropertiesPage        = new Frames.Properties(_SQLClient);
     _DefinitionsPage       = new Frames.Definitions(_SQLClient);
     _SourcePage            = new Frames.Sources(_SQLClient);
     _TreeVisualizationPage = new Graphs.TreeVisualizationPage(_SQLClient);
 }