Exemple #1
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();
        }
Exemple #2
0
 internal TagEditor(CHDB chdb) : this()
 {
     this.chdb          = chdb;
     this.DataContext   = chdb;
     TagControl.AllTags = chdb.AllTags;
 }
 internal TagPreferences(CHDB chdb) : this()
 {
     this.chdb   = chdb;
     DataContext = chdb;
 }