Hi,
I would like to put a link into a cell of the grid, I need to have a "link" style (blue and underscore) but also once I click on the linkit open a browser and jump to the URL.
I know how to customize the style.
But how can I handle the click event on a column/cell ?
Thanks
One way is to listen for the PreviewMouseLeftButtonDown event.
{
if ( source == null ) return;
if (cvp == null) return;
// do stuff here
}
Thanks a lot for your help