cscの作法 その76
894 ワード
概要
cscの作法、調べてみた。
WebBrowserでhtml5test.comのスコア確認やってみた。
写真
サンプルコード
using System;
using System.Windows.Forms;
using System.Drawing;
class form1: Form {
WebBrowser wb0;
form1() {
Text = "WebBrowser";
ClientSize = new Size(800, 500);
wb0 = new WebBrowser();
wb0.Dock = DockStyle.Fill;
this.Controls.Add(wb0);
string url = "http://html5test.com/";
wb0.Navigate(url);
}
[STAThread]
public static void Main() {
Application.Run(new form1());
}
}
using System;
using System.Windows.Forms;
using System.Drawing;
class form1: Form {
WebBrowser wb0;
form1() {
Text = "WebBrowser";
ClientSize = new Size(800, 500);
wb0 = new WebBrowser();
wb0.Dock = DockStyle.Fill;
this.Controls.Add(wb0);
string url = "http://html5test.com/";
wb0.Navigate(url);
}
[STAThread]
public static void Main() {
Application.Run(new form1());
}
}
以上。
Author And Source
この問題について(cscの作法 その76), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/4dafa66ae35fa980831b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .