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

I have a datagridview in my wpf application and it has a datagridcombobox column with some items.
for example Y,N.
if i select Y in the combobox, i need to display "Available" as tool tip on mouse over of the datagridcombobox.
if i select N in the combobox, i need to display "Not Available" as tool tip on mouse over of the datagrud combobox.



Regards,
Posted

Try this...
HTML
<select>
<option value="Y" title="Available">Yes</option>
<option value="N" title="Not Available">No</option>
</select>
 
Share this answer
 
v2
Comments
nm.nagaraju 21-Aug-13 5:28am    
Can you guide me how i can use this?

Thanks.
Raman Midha 21-Aug-13 6:00am    
Dinesh i think your solution is for asp or wcf not for wpf .
Dineshshp 21-Aug-13 6:16am    
It's no fair... If your problem has been solved then don't forget to give stars +5...
XML
<ComboBox Height="29" VerticalAlignment="Top" Margin="12,56,-12,0">
          <ComboBoxItem Content="Y" ToolTip="Availaible"></ComboBoxItem>
          <ComboBoxItem Content="Y" ToolTip="Not Availaible"></ComboBoxItem>
      </ComboBox>
 
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