using System;
using System.Drawing;
using System.Windows.Forms;
class InheritHelloWorld : Form {
public static void Main() {
Application.Run(new InheritHelloWorld());
}
public InheritHelloWorld() {
Text = "Inherit " + Text;
}
protected override void OnPaint(PaintEventArgs pea) {
Graphics graphics = pea.Graphics;
graphics.DrawString("Hello from InheritHelloWorld!",
Font, Brushes.Black, 0, 100);
}
}
|