前田稔(Maeda Minoru)の超初心者のプログラム入門
![]()
![]()


![]()
/*********************************************************/
/*★ Top に Form を継承して Line を描画する 前田 稔 ★*/
/*********************************************************/
using System;
using System.Drawing;
using System.Windows.Forms;
class Line : Form
{
public static void Main()
{
Line f2 = new Line();
f2.Paint += new PaintEventHandler(MyHandler);
Application.Run(f2);
}
static void MyHandler(object sender, PaintEventArgs e)
{
Graphics g = e.Graphics;
g.DrawLine(new Pen(Color.Red),10,50,280,50);
g.DrawLine(new Pen(Color.Blue,10), 10, 100, 280, 100);
}
}
|
![]()