Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Windows.Forms;
- namespace R720VisualizarPaginaWebEnWinForms
- {
- public partial class Principal : Form
- {
- public Principal()
- {
- InitializeComponent();
- txtUrl.Text = "https://ortizol.blogspot.com";
- }
- private void btnIr_Click(object sender, EventArgs e)
- {
- webNavegador.Navigate(txtUrl.Text);
- }
- private void btnInicio_Click(object sender, EventArgs e)
- {
- webNavegador.GoHome();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement