
前田稔(Maeda Minoru)の超初心者のプログラム入門
![]()
![]()
int SP_NO = 0;
private void timer1_Tick(object sender, EventArgs e)
{
SP_NO= (SP_NO+1)%16;
Invalidate();
}
|

Card App;
int SP_NO = 0;
public Form2()
{
InitializeComponent();
App = new Card(@"c:\data\test\bijin16.jpg", 60, 60);
timer1.Start();
}
|
private void MyHandler(object sender, PaintEventArgs e)
{
Graphics g = e.Graphics;
if (App.bmp == null) Application.Exit();
App.View(g, SP_NO, 20, 20);
}
|
private void Button_Click(object sender, EventArgs e)
{
Form2 MyForm2 = new Form2();
MyForm2.Show();
}
|
![]()