- 612 名前:デフォルトの名無しさん [2019/09/13(金) 23:44:54.82 ID:aO4dryeFa.net]
- private void button1_Click(object sender, EventArgs e)
{ mStopwatch.Restart(); } private void timer1_Tick(object sender, EventArgs e) { var timeout = 5d; var elapse = Math.Min(timeout, mStopwatch.ElapsedMilliseconds / 1000d); var pos = elapse / timeout; BackColor = BlendColor(Color.White, Color.Blue, pos); } }
|

|