BaconographyWP8.Common.MarkdownButton.OnUrlChanged C# (CSharp) Method

OnUrlChanged() private static method

private static OnUrlChanged ( DependencyObject d, System.Windows.DependencyPropertyChangedEventArgs e ) : void
d System.Windows.DependencyObject
e System.Windows.DependencyPropertyChangedEventArgs
return void
		private static void OnUrlChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
		{
			var button = (MarkdownButton)d;
			button.Url = (string)e.NewValue;
		}