Microsoft.Phone.Controls.ContextMenu.OnApplicationBarMirrorChanged C# (CSharp) Method

OnApplicationBarMirrorChanged() private static method

Handles changes to the ApplicationBarMirror DependencyProperty.
private static OnApplicationBarMirrorChanged ( DependencyObject o, System.Windows.DependencyPropertyChangedEventArgs e ) : void
o System.Windows.DependencyObject DependencyObject that changed.
e System.Windows.DependencyPropertyChangedEventArgs Event data for the DependencyPropertyChangedEvent.
return void
        private static void OnApplicationBarMirrorChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
        {
            ((ContextMenu)o).OnApplicationBarMirrorChanged((IApplicationBar)e.OldValue, (IApplicationBar)e.NewValue);
        }

Same methods

ContextMenu::OnApplicationBarMirrorChanged ( IApplicationBar oldValue, IApplicationBar newValue ) : void