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:
Text File  |  2000-06-23  |  325 b   |  15 lines

  1. using System;
  2. using System.WinForms;
  3.  
  4. public class StockCtl : RichControl 
  5. {
  6.     protected override void OnPaint(PaintEventArgs e) 
  7.     {
  8.         e.Graphics.DrawString(Text, 
  9.                               Font, 
  10.                               ForeColor, 
  11.                               ClientRectangle);
  12.     }
  13. }
  14.  
  15.