source: 2012/26/VilleS/WindowsFormsApplication1/WindowsFormsApplication1/Form1.cs @ 10337

Revision 4661, 802 bytes checked in by vivasuom, 10 years ago (diff)

Talletus.

Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Data;
5using System.Drawing;
6using System.Linq;
7using System.Text;
8using System.Windows.Forms;
9
10namespace WindowsFormsApplication1
11{
12    public partial class Form1 : Form
13    {
14        public Form1()
15        {
16            InitializeComponent();
17        }
18
19        private void button3_Click(object sender, EventArgs e)
20        {
21            webBrowser1.Navigate("antti-jussi.tk/AJpoika.html");
22        }
23
24        private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
25        {
26
27        }
28
29        private void button1_Click(object sender, EventArgs e)
30        {
31            webBrowser1.Navigate("antti-jussi.tk");
32        }
33    }
34}
Note: See TracBrowser for help on using the repository browser.