Click here to Skip to main content
15,900,511 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,

I would like to know how to put a transparent colored(light colored) control over one of the cells of datagridview?

I want to make the Cell specific so that those who see the screen will notice the Cell and Understand some Importance of the Cell.
i Have already Colored the Cell.Now i just wanrt to Put a transparent Control over it.


Thanks
Lakshman
Posted
Updated 25-Oct-10 19:55pm
v3
Comments
Mohd Wasif 26-Oct-10 1:50am    
Ur question is not clear .
Please let me know what do want to do with that control or u want for pop-up or something else.
Lakshmancb 26-Oct-10 1:56am    
Thanks Mohammad Wasif.

I Have Improved the Question. Kindly Check It.

Regards
Lakshman
RDBurmon 27-Oct-10 1:23am    
Have you check the API Pro for the same ?

1 solution

Hello Lakshman ,

Try applying CSS styles for DataGridView to get transparent effect.
.Transparent
{
background-color:cyan;
filter: alpha(opacity=50);
opacity: 0.5;
}



Hope this may help you.
 
Share this answer
 
v2
Comments
Dalek Dave 29-Oct-10 5:05am    
Good Call.

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