Bloom.CollectionTab.LibraryBookView.OnBookSelectionChanged C# (CSharp) Method

OnBookSelectionChanged() private method

private OnBookSelectionChanged ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        void OnBookSelectionChanged(object sender, EventArgs e)
        {
            try
            {
                LoadBook();
                UpdateTitleBar();
            }
            catch (Exception error)
            {
                var msg = L10NSharp.LocalizationManager.GetString("Errors.ErrorSelecting",
                    "There was a problem selecting the book.  Restarting Bloom may fix the problem.  If not, please click the 'Details' button and report the problem to the Bloom Developers.");
                SIL.Reporting.ErrorReport.NotifyUserOfProblem(error, msg);
            }
        }