なる、取りあえず動いたから下記に記載(一部省略)>>651に続く

namespace WFA
{
public partial class Form1 : Form
{
int countDn; // カウントダウン用変数

public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
timer1.Interval = 1000; // 1000ms毎にイベント
timer1.Enabled = true;
}

private void timer1_Tick(object sender, EventArgs e)
{
if (countDn > 0)
{
countDn--;
if (countDn == 0)
{
// カウントアップした時の処理を書く
MessageBox.Show(