Exemplo n.º 1
0
        private void MainWindow_FileOpened(object sender, KeePass.Forms.FileOpenedEventArgs e)
        {
            if (_isLocked)
            {
                _isLocked = false;

                var resp = new Response(Actions.DATABASE_UNLOCKED);

                _listener.Write(resp.GetEncryptedResponse());
            }
        }
 private void MainWindow_FileOpened(object sender, KeePass.Forms.FileOpenedEventArgs e)
 {
     try
     {
         RefreshState();
     }
     catch (Exception ex)
     {
         ShowError(null, ex);
     }
 }
        void MainWindow_FileOpened(object sender, KeePass.Forms.FileOpenedEventArgs e)
        {
            Debug.WriteLine("File opened");
            //add a new Controller for the opened Database
            SearchController searchCcontroller = new SearchController(this.qsControl, e.Database, GetMainListViewControl());

            dictionary.Add(e.Database, searchCcontroller);
            //assuming the opened Database is also the active Database we subscribe it's SearchController
            //so user input will be handled by that Controller
            qsControl.TextChanged += searchCcontroller.TextUpdateHandler;
            //qsControl.comboBoxSearch.TextChanged += searchCcontroller.TextUpdateHandler;
            this.qsControl.Enabled = true;
            if (Settings.Default.FocusOnOpen)
            {
                // focus doesn't work if the Form is not yet visible. Use Select instead
                this.qsControl.comboBoxSearch.Select();
                //this.qsControl.comboBoxSearch.Focus();
            }
        }
Exemplo n.º 4
0
 private void MainWindow_FileOpened(object sender, KeePass.Forms.FileOpenedEventArgs e)
 {
     KPOTP.GetTimingsAsync(e.Database);
 }