Reputation: 679
I need a refresh button(to refresh a web page) for my web browser app for windows phone 7. Can anyone help me for this? My web browser control named as "browsers" and refresh button named as Refresh_Click. Thanks in advance for your hard work!
Upvotes: 0
Views: 4421
Reputation: 3956
That's pretty easy, try:
private void Refresh_Click(object sender, EventArgs e){
browsers.Navigate(browsers.Source.AbsoluteUri);
}
Upvotes: 3