从 asp.net 页面,通过 ClickOnce 部署,启动一个 .Net WinForms 应用程序。在某个时刻,WinForm 应用程序需要刷新它启动的网页。
我怎么能这样做?基于 .Net 的 Windows 应用程序如何刷新已在浏览器中打开的页面?
这里有一些示例代码来做你需要的(只是相关部分):
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
// Get a handle to an application window.
[DllImport("USER32.DLL", CharSet = CharSet.Unicode)]
public static extern IntPtr FindWindow(string lpClassName,
string lpWindowName);
// Activate an application window.
[DllImport("USER32.DLL")]
public static extern bool SetForegroundWindow(IntPtr hWnd);
private void RefreshExplorer()
{
//You may want to receive the window caption as a parameter...
//hard-coded for now.
// Get a handle to the current instance of IE based on window title.
// Using Google as an example - Window caption when one navigates to google.com
IntPtr explorerHandle = FindWindow("IEFrame", "Google - Windows Internet Explorer");
// Verify that we found the Window.
if (explorerHandle == IntPtr.Zero)
{
MessageBox.Show("Didn't find an instance of IE");
return;
}
SetForegroundWindow(explorerHandle );
//Refresh the page
SendKeys.Send("{F5}"); //The page will refresh.
}
}
}
注意:代码是此 MSDN 示例的修改。
以稳健的方式做到这一点并不容易。例如,用户可能没有使用 IE。
您唯一可以控制并且对网页和 Windows 应用程序通用的就是您的 Web 服务器。
这个解决方案很复杂,但这是我能想到的唯一可行的方法。
1)让网页在windows应用程序运行之前打开一个与web服务器的长轮询连接。SignalR 目前正在为此获得很好的媒体报道。
2)让windows应用程序在要更新网页时向服务器发送信号。
3) 在服务器上,完成长轮询请求,向网络浏览器发送回信号。
4) 在网页中,通过刷新页面来处理响应。
我说很纠结!