I have a DataGrid in my WPF window which is bound to a database. Database fields are Link, Title, SavedOn which have types nvarchar, nvarchar and DateTime respectively. At present all the feilds are bound to different columns in DataGrid. I am using DataGridHyperLinkColumn for Link column and Event Setter to capture Hyperlink.Click events. All is working fine.
PROBLEM:
But now i want to make it such a way that Text in Title Column of datagrid links to the Link that is when clicked takes me to the Link.Using this approach i’ll save one column as both title and clickable link is in one column just as in normal webpages.Any ideas how can i go about this?. Currently grid looks like this:

Plus, how can i change the default royal blue color of links to something else?
Use the
ContentBindingto specify the display text for the link (just get rid of theTitlecolumn).To style the hyperlinks in the whole grid add a style to the
DataGrid.Resources:…to apply it only in one column assign it as the
ElementStyleof the column, you will need to nest it in aTextBlockstyle though.