Link to home
Start Free TrialLog in
Avatar of htn5ca
htn5ca

asked on

How to insert multiple images into cell in DataGridView

I binded my datasource to the GridView with an Array.  I added a column called Images.  WIth this column I want to have 3 couple pictures inside each cell and if the user clicks on one of the pictures then it will do something with the information in the row.  My question is how can I get 3 images into a single cell?  
Avatar of Nirmalan Nagenthiran
Nirmalan Nagenthiran
Flag of Australia image

ASKER CERTIFIED SOLUTION
Avatar of game-master
game-master
Flag of Philippines image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of htn5ca
htn5ca

ASKER

Great example.  All I did was created a bitmap and a rectangle around the bitmap.  Override the OnClick method so if the click is inside the rectangle then throw an exception.  Thanks a million