Captura.RecentItem.PrintButton_Click C# (CSharp) 메소드

PrintButton_Click() 개인적인 메소드

private PrintButton_Click ( object sender, RoutedEventArgs e ) : void
sender object
e System.Windows.RoutedEventArgs
리턴 void
        void PrintButton_Click(object sender, RoutedEventArgs e)
        {
            Process.Start(new ProcessStartInfo(_filePath) { Verb = "Print" });
        }