AltitudeAngelWings.WpfExtensions.ScrollToBottom C# (CSharp) Метод

ScrollToBottom() публичный статический Метод

public static ScrollToBottom ( this itemsControl ) : void
itemsControl this
Результат void
        public static void ScrollToBottom(this ItemsControl itemsControl)
        {
            if (!TryScrollToBottom(itemsControl))
            {
                itemsControl.Dispatcher.BeginInvoke(DispatcherPriority.Loaded,
                    new Action(() => TryScrollToBottom(itemsControl)));
            }
        }