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の作法 その56

Posted at

概要

cscの作法、調べてみた。
練習問題やってみた。

練習問題

タイマー使って、いろんなsin波、見せて。

写真

image.png

サンプルコード

using System;
using System.Windows.Forms;
using System.Drawing;

class form1: Form {
	form1() {
		ClientSize = new Size(800, 300);
		Timer timer = new Timer();
		timer.Interval = 10000; 
		timer.Tick += new EventHandler(timerTick);
		timer.Start();
	}
	protected override void OnPaint(PaintEventArgs e) {
		Graphics g = e.Graphics;
		Bitmap p = new Bitmap(800, 300);
		Brush red = new SolidBrush(Color.Red);
		int j;
		double angle;
		Random r = new Random();
		double d = r.NextDouble();
		for (j = 0; j < 720; j++)
		{
			angle = ((double) j) / 360 * 2 * Math.PI / d;
			p.SetPixel(j, (int)(100 * Math.Sin(angle) + 150), Color.Red);
		}
		g.DrawImageUnscaled(p, 0, 0);
		base.OnPaint(e);
	}
	void timerTick(object sender, EventArgs e) {
		Text = DateTime.Now.ToString("HH:mm:ss");
		this.Invalidate();
	}
	[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?