LogViewer.LabelAndText.OnLabelChanged C# (CSharp) Method

OnLabelChanged() private static method

private static OnLabelChanged ( DependencyObject d, System.Windows.DependencyPropertyChangedEventArgs e ) : void
d System.Windows.DependencyObject
e System.Windows.DependencyPropertyChangedEventArgs
return void
        private static void OnLabelChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            var ctrl = (LabelAndText)d;
            ctrl.label.Content = e.NewValue;
        }