Hi,
I was wondering if it is possible to code this scenario.
I have a hyperlink, which is in a datatemplate of a WPF DataGridCell. Now when this hyperlink is clicked, I want it to dissappear and combo box to appear in its place.
This combo box will have to be bound to a data source as well.....once an option is chosen, the combo box vanishes and the hyperlink appears with the selected item.
Thanks in advance.
Urema.
Loading
jingePosted Oct 23, 2009, 2:26 AM
You can use DataGridComboBoxColumn, then customize the Cell style to make it like hyperlink. Handle its click event, and use Process.Start to navigate the site.
Here are some sample code, let you complete.
If you find it helpful, hope you can mark it.
personPosted Nov 3, 2009, 11:05 AM
But thanks for the start!
Person.