private void tagEditorShowButton_Click(object sender, RoutedEventArgs e) { if (te == null) { te = new TagEditor(chdb); } te.Show(); }
private void loadCHDB() { chdb = new CHDB(me); DataContext = chdb; ra = new RoundAnnotator(chdb); //ra.Show(); te = new TagEditor(chdb); //te.Show(); tp = new TagPreferences(chdb); //tp.Show(); }