OnIsExpandedChanged() 보호된 메소드

protected OnIsExpandedChanged ( bool oldValue, bool newValue ) : void
oldValue bool
newValue bool
리턴 void
예제 #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);
            }
        }