I use this code to print pdf to default printer.
public static void PrintPDFByProcess()
{
try
{
using (Process p = new Process())
{
p.StartInfo = new ProcessStartInfo()
{
CreateNoWindow = true,
Verb = "print",
FileName = fileName
};
p.Start();
p.Dispose();
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
Now i want to print by showing Print Dialog Control Like This :