Click here to Skip to main content
15,891,033 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hello

Im am creating application using UltraGrid For Emailviewer .
I want to Image for display as per status of every row. and also at the run time if i wil swap the column and exit the my application then when i opened it wil be as i previous swapping the column wil displayed.
Posted
Comments
[no name] 26-Feb-13 0:11am    
what is the problem that you are facing for doing above task.??

1 solution

If you want for all cells in the row then:
(TestImage is a resource)
C#
_testGrid.Rows[1].Appearance.Image = MyApp.Resources.TestImage;


If you want just for a specific cell then:
C#
_testGrid.Rows[1].Cells[1].Appearance.Image = MyApp.Resources.TestImage;
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900