cscの作法 その72


概要

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());
		}
	}
}



以上。