ACAT.Extensions.Default.UI.Scanners.TalkApplicationScannerAlphabetical.TalkApplicationScanner_Load C# (CSharp) Method

TalkApplicationScanner_Load() private method

The form has loaded. Start the animation sequence
private TalkApplicationScanner_Load ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void TalkApplicationScanner_Load(object sender, EventArgs e)
        {
            //Windows.ClickOnWindow(this);

            TextBoxTalkWindow.Focus();

            WordPredictionManager.Instance.ActiveWordPredictor.PredictionWordCount = PreferredWordListCount;

            _alphabetScannerCommon.OnLoad(sender, e);

            loadPhrases();

            var colorScheme = ThemeManager.Instance.ActiveTheme.Colors.GetColorScheme(ColorSchemes.TalkWindowSchemeName);
            TextBoxTalkWindow.BackColor = colorScheme.Background;
            TextBoxTalkWindow.ForeColor = colorScheme.Foreground;

            enableWatchdogs();
        }