home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
io Programmo 40
/
IOPROG_40.ISO
/
SOFT
/
NETFrameworkSDK.exe
/
comsdk.cab
/
samples.exe
/
Remoting
/
MyStock
/
StockCtl.cs
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-06-23
|
325 b
|
15 lines
using System;
using System.WinForms;
public class StockCtl : RichControl
{
protected override void OnPaint(PaintEventArgs e)
{
e.Graphics.DrawString(Text,
Font,
ForeColor,
ClientRectangle);
}
}