C#捕获Microsoft打印到PDF对话框

时间:2018-09-04 18:33:57

标签: c# pdf revit-api

我想从非Office应用程序中捕获并禁止使用Microsoft Print to PDF驱动程序时显示的Savefile对话框。然后以编程方式输入文件路径,可能使用System.Windows.Automation。

显示SaveFileDialog时似乎找不到句柄。我相信我可以处理Windows.Automation部分。

我想使用Microsoft驱动程序,因为它与所有Windows 10一起提供。

还有其他捕获/抑制此对话框的方法吗?我目前正在通过注册表在本地计算机上使用另一个pdf驱动程序来执行此操作。但是我想转到Microsoft PDF,因为它是标准的。

线程: How to programmatically print to PDF file without prompting for filename in C# using the Microsoft Print To PDF printer that comes with Windows 10-无法解决我的问题,从Revit API运行时会打印空白页。 Autodesk Revit必须启动打印(并通过其api完成)。

试图从user32.dll查找对话框的代码

public static List<IntPtr>GetChildWindows( IntPtr parent) {
  List<IntPtr>result=new List<IntPtr>();
  GCHandle listHandle=GCHandle.Alloc(result);
  try {
    EnumWindowProc childProc=new EnumWindowProc(EnumWindow);
    EnumChildWindows(parent, childProc, GCHandle.ToIntPtr(listHandle));
  }
  finally {
    if (listHandle.IsAllocated) listHandle.Free();
  }
  return result;
}

public static string GetText(IntPtr hWnd) {
  int length=GetWindowTextLength(hWnd);
  StringBuilder sb=new StringBuilder(length + 1);
  GetWindowText(hWnd, sb, sb.Capacity);
  return sb.ToString();
}

private void Test() {
  Process[] revits=Process.GetProcessesByName( "Revit");
  List<IntPtr>children=GetChildWindows( revits[0].MainWindowHandle);
  var names=new List<string>();
  foreach (var child in children) {
    names.Add(GetText(child));
  }
}

1 个答案:

答案 0 :(得分:1)

我在自己的系统上进行了一些测试,看来枚举顶级窗口将找到“保存文件”对话框。我尝试从多个程序打印到MS PDF打印机,结果都是一样的。以下是根据MS Docs窗口枚举示例改编的一些代码。我添加了代码以获取进程ID,以便您可以检查以确保它是您的窗口。

// P/Invoke declarations
protected delegate bool EnumWindowsProc(IntPtr hWnd, IntPtr lParam);
[DllImport("user32.dll", CharSet = CharSet.Unicode)]
protected static extern int GetWindowText(IntPtr hWnd, StringBuilder strText, int maxCount);
[DllImport("user32.dll", CharSet = CharSet.Unicode)]
protected static extern int GetWindowTextLength(IntPtr hWnd);
[DllImport("user32.dll")]
protected static extern bool EnumWindows(EnumWindowsProc enumProc, IntPtr lParam);
[DllImport("user32.dll")]
protected static extern bool IsWindowVisible(IntPtr hWnd);
[DllImport("user32.dll", SetLastError = true)]
static extern uint GetWindowThreadProcessId(IntPtr hWnd, out uint processId);

// Callback for examining the window
protected static bool EnumTheWindows(IntPtr hWnd, IntPtr lParam)
{
    int size = GetWindowTextLength(hWnd);
    if (size++ > 0 && IsWindowVisible(hWnd))
    {
        StringBuilder sb = new StringBuilder(size);
        GetWindowText(hWnd, sb, size);
        if (sb.ToString().Equals("Save Print Output As", StringComparison.Ordinal))
        {
            uint procId = 0;
            GetWindowThreadProcessId(hWnd, out procId);
            Console.WriteLine($"Found it! ProcID: {procId}");
        }
    }
    return true;
}

void Main()
{
   EnumWindows(new EnumWindowsProc(EnumTheWindows), IntPtr.Zero);
}