OnIsExpandedChanged() protected method

protected OnIsExpandedChanged ( bool oldValue, bool newValue ) : void
oldValue bool
newValue bool
return void
Exemplo n.º 1
0
        private static void OnIsExpandedChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
        {
            PropertyItem propertyItem = o as PropertyItem;

            if (propertyItem != null)
            {
                propertyItem.OnIsExpandedChanged(( bool )e.OldValue, ( bool )e.NewValue);
            }
        }