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

UpdateTitleBar() private method

private UpdateTitleBar ( ) : void
return void
        private void UpdateTitleBar()
        {
            if (this.ParentForm != null)
            {
                _shell = (Shell)this.ParentForm;
            }
            if (_shell != null)
            {
                _shell.SetWindowText((_bookSelection.CurrentSelection == null) ? null : _bookSelection.CurrentSelection.TitleBestForUserDisplay);
            }
        }