Ejemplo n.º 1
0
        /// <summary>
        /// Changes the state of the items given the value of the property
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        static void OnIsSelectionEnabledPropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e)
        {
            LongListMultiSelector This = sender as LongListMultiSelector;

            if (This != null)
            {
                This.OnIsSelectionEnabledChanged(e);
            }
        }