Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个用于 Windows Phone 7 的网络浏览器应用程序的刷新按钮(刷新网页)。有人可以帮我吗?我的 Web 浏览器控件名为“浏览器”,刷新按钮名为 Refresh_Click。提前感谢您的辛勤工作!
这很简单,试试:
private void Refresh_Click(object sender, EventArgs e){ browsers.Navigate(browsers.Source.AbsoluteUri); }