
前田稔(Maeda Minoru)の超初心者のプログラム入門
![]()
![]()
![]()
/************************************************************/
/*★ Form を継承した MyForm で TEXT を表示する 前田 稔 ★*/
/************************************************************/
using System;
using System.Drawing;
using System.Windows.Forms;
public class MyForm : Form
{
public MyForm()
{
Paint += new PaintEventHandler(MyHandler);
}
private void MyHandler(object sender, PaintEventArgs e)
{
Graphics g = e.Graphics;
Font f = new Font("MS 明朝", 40);
g.DrawString("Windows", f, Brushes.Red, new PointF(10F, 50F));
}
}
class form01
{
public static void Main()
{
MyForm mf = new MyForm();
Application.Run(mf);
}
}
|
![]()
![]()