public VerticalTaggerGrid()
 {
     InitializeComponent();
     //dbCore = new Db.Sqlite.DbAdapterSwitch();
     tagFile = taggerConfigFolderPath + "\\fileTags.xml";
     mController = new TaggerGridController(
         txtTags,
         txtFilter,
         lvTags,
         lvFileElements,
         tbFileCount,
         tbStatus,
         chkMultiTagsAsIntersectionInsteadOfUnion);
 }
        public HorizontalTaggerGrid()
        {
            InitializeComponent();

            mController = new TaggerGridController(
                txtTags,
                txtFilter,
                lvTags,
                lvFileElements,
                tbFileCount,
                tbStatus,
                chkMultiTagsAsIntersectionInsteadOfUnion);

            //dbCore = new Db.Sqlite.DbAdapterSwitch();
            tagFile = taggerConfigFolderPath + "\\fileTags.xml";
            mController.AddSelectionChangedListener(
                new FileElementTimestampExtractionAction(
                    mController.GetTagMatrix(), this));
            //moved to NwdVoiceMemoBrowser
            //AddSelectionChangedListener(new FileElementTagExtractionAction(tagMatrix, this));
        }