BlipFace.View.BigPictureWindow.hypPictureUrl_RequestNavigate C# (CSharp) 메소드

hypPictureUrl_RequestNavigate() 개인적인 메소드

private hypPictureUrl_RequestNavigate ( object sender, System e ) : void
sender object
e System
리턴 void
        private void hypPictureUrl_RequestNavigate(object sender, System.Windows.Navigation.RequestNavigateEventArgs e)
        {
            Hyperlink hl = (Hyperlink)sender;
            string navigateUri = hl.NavigateUri.ToString();
            Process.Start(new ProcessStartInfo(navigateUri));
            e.Handled = true;
        }