views:

31

answers:

1

Hi,

Is there a way to "hide" the SelectedItem of the DataGrid ?

dataGrid.SelectedItem.Visibility = Visibility.Hidden ???

Regards, MadSeb

A: 

Setting the Visibility of "SelectedItem", as you have, would not change the grid - it would be changing the "SelectedItem" property value of the bound object for that SelectedItem, which is not going to affect the grid at all.

In order to change the grid row's visibility, you'll need to change it directly. You can retemplate the DataGrid to change how the selected row is displayed.

For details, see DataGrid Styles and Templates.

Reed Copsey