前田稔(Maeda Minoru)の超初心者のプログラム入門
![]()
![]()
private void timer1_Tick(object sender, EventArgs e)
{
CNT++;
Text = "COUNT=" + CNT;
}
|
public partial class Form1 : Form
{
int CNT = 0;
public Form1()
{
InitializeComponent();
timer1.Start();
}
|
![]()