Blacker.MangaScraper.Helpers.ListBoxExtension.SetSelectedItemsSource C# (CSharp) Method

SetSelectedItemsSource() public static method

public static SetSelectedItemsSource ( DependencyObject element, IList value ) : void
element System.Windows.DependencyObject
value IList
return void
        public static void SetSelectedItemsSource(DependencyObject element, IList value)
        {
            if (element == null)
                throw new ArgumentNullException("element");

            element.SetValue(SelectedItemsSourceProperty, value);
        }