您可以使用Process类启动该对话框.
private void button1_Click(object sender, EventArgs e)
{
string fileName = @"C:\Development\myImage.tif";//pass in or whatever you need
var p = new Process();
p.StartInfo.FileName = fileName;
p.StartInfo.Verb = "Print";
p.Start();
}
Run Code Online (Sandbox Code Playgroud)