views:

44

answers:

1

Hi,

I need to use a two dimensional grid with headers in the left and the top on Silverlight.

Is it possible to configure a grid for that or I need to use an other control ?

Best regards.

Narglix

A: 

Have you considered simply using the DataGrid from Silverlight's own SDK?

AnthonyWJones
The problem of the DataGrid is it can just support headers on one side of the grid and I would like in two sides like a matrix.
@user301089: `DataGrid` has row headers as well, you can change what is displayed in the row header by specifying your own Template for a `DataRowHeader` in the `DataGrid.RowHeaderStyle` property.
AnthonyWJones