protected override void OnPresentationImageSelected(object sender, PresentationImageSelectedEventArgs e)
        {
            base.OnPresentationImageSelected(sender, e);

            if (_publisher != null)
            {
                _publisher.PublishNow();
            }
        }
示例#2
0
 private void FlushSelectionChangedNotification()
 {
     _delayedSelectionChangedPublisher.PublishNow();
 }