gpt4 book ai didi

c# - 显示 Internet 选项,如 Internet Explorer

转载 作者:太空宇宙 更新时间:2023-11-03 10:41:22 24 4
gpt4 key购买 nike

我使用以下代码在我的 Web 浏览器控件中显示 Internet 选项:

Process.Start("InetCpl.Cpl");

但是,这会为 Internet 选项创建一个独立于我的主窗口的新窗口。

我需要像 Internet Explorer 一样显示 Internet 选项,即应该阻止 MainWindow UI,并且应该在 MainWindow 中打开 Internet 选项窗口。

如有任何帮助,我们将不胜感激。提前致谢。

最佳答案

您可以尝试直接调用启动函数。将启动函数导入您的类

[DllImport("inetcpl.cpl", SetLastError = true)]
public static extern int LaunchInternetControlPanel(IntPtr hWnd);

并从你的命令中调用它

LaunchInternetControlPanel(this.Handle);

关于c# - 显示 Internet 选项,如 Internet Explorer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25238539/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com