Exemplo n.º 1
0
 private void tagEditorShowButton_Click(object sender, RoutedEventArgs e)
 {
     if (te == null)
     {
         te = new TagEditor(chdb);
     }
     te.Show();
 }
Exemplo n.º 2
0
        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();
        }