概要
cscの作法、調べてみた。
練習問題やってみた。
練習問題
webbrowserを使え。
方針
- ブラウザ作る。
写真
サンプルコード
using System;
using System.Windows.Forms;
using System.Drawing;
class form1: Form {
TextBox bo1;
WebBrowser wb0;
form1() {
Text = "WebBrowser";
ClientSize = new Size(700, 600);
bo1 = new TextBox();
bo1.Location = new Point(10, 10);
bo1.Text = "https://qiita.com";
bo1.Size = new Size(300, 20);
Controls.Add(bo1);
Button btn1 = new Button();
btn1.Location = new Point(340, 10);
btn1.Text = "run";
btn1.Click += btn1_Click;
Controls.AddRange(new Control[] {
btn1
});
wb0 = new WebBrowser();
wb0.Location = new Point(10, 40);
wb0.Width = 680;
wb0.Height = 540;
wb0.ScriptErrorsSuppressed = true;
Controls.AddRange(new Control[] {
wb0
});
}
void btn1_Click(object sender, System.EventArgs e) {
wb0.Navigate(bo1.Text);
}
[STAThread]
public static void Main() {
Application.Run(new form1());
}
}
以上