0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

cscの作法 その72

Posted at

概要

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



以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?