Bloom.Book.BookSelection.InvokeSelectionChanged C# (CSharp) 메소드

InvokeSelectionChanged() 개인적인 메소드

private InvokeSelectionChanged ( ) : void
리턴 void
        private void InvokeSelectionChanged()
        {
            EventHandler handler = SelectionChanged;
            if (handler != null)
            {
                handler(this, null);
            }
        }