.NET Array/Table of Images Component

  • Thread starter Thread starter JD
  • Start date Start date
J

JD

Just recently started to program WinForms using C# after coming from a
Delphi background. In Delphi's core VCL there was a useful component called
DrawGrid, which could be used to draw a 2D array of images on the screen. It
took care of all sorts of things such as scrollbars, and selecting with the
mouse, etc.

I can't seem to find an equivalent component in .NET. Does anyone know if
such a component exists?

Many thanks

JD
 
* "JD said:
Just recently started to program WinForms using C# after coming from a
Delphi background. In Delphi's core VCL there was a useful component called
DrawGrid, which could be used to draw a 2D array of images on the screen. It
took care of all sorts of things such as scrollbars, and selecting with the
mouse, etc.

I can't seem to find an equivalent component in .NET. Does anyone know if
such a component exists?

DataGrid:

<URL:http://www.syncfusion.com/FAQ/WinForms/FAQ_c44c.asp#q837q>
 
Thanks, I'll have a look at the segment you pointed me to, it looks like it
may well do what I am after. Thanks again J
 
Back
Top