cscの作法 その72
1105 ワード
概要
cscの作法、調べてみた。
threadやってみた。
参考にしたページ
サンプルコード
using System;
using System.Threading;
using System.Windows.Forms;
using System.Drawing;
namespace WindowsFormsApp4
{
public partial class Form1 : Form {
Button button1;
public Form1() {
button1 = new Button();
button1.Location = new Point(30, 30);
button1.Text = "test";
Controls.AddRange(new Control[] {
button1
});
button1.Click += Button1_Click;
}
private void Button1_Click(object sender, EventArgs e) {
for (int i = 1; i < 6; i++)
{
Thread.Sleep(1000);
Text = string.Format("{0}%", i * 20);
Application.DoEvents();
}
MessageBox.Show("終わり!");
}
[STAThread]
public static void Main() {
Application.Run(new Form1());
}
}
}
using System;
using System.Threading;
using System.Windows.Forms;
using System.Drawing;
namespace WindowsFormsApp4
{
public partial class Form1 : Form {
Button button1;
public Form1() {
button1 = new Button();
button1.Location = new Point(30, 30);
button1.Text = "test";
Controls.AddRange(new Control[] {
button1
});
button1.Click += Button1_Click;
}
private void Button1_Click(object sender, EventArgs e) {
for (int i = 1; i < 6; i++)
{
Thread.Sleep(1000);
Text = string.Format("{0}%", i * 20);
Application.DoEvents();
}
MessageBox.Show("終わり!");
}
[STAThread]
public static void Main() {
Application.Run(new Form1());
}
}
}
以上。
Author And Source
この問題について(cscの作法 その72), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/d5645e7da80db3c52a9c著者帰属:元の著者の情報は、元の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 .