Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Within a WPF datagrid's code behind, how do I get the currentCell from my dataGrid.SelectedItem (In Code)?

Many Thanks,

share|improve this question
What is ItemsSource of DataGrid? – Haris Hasan May 12 '11 at 12:53
haris, the item source is RowViewModel. In case you are wondering, what I am doing in the view's code behind. I am trying to fix some ui issues with it. – Kave May 12 '11 at 13:22

2 Answers

up vote 5 down vote accepted

Try this from post

You can retrieve row from dataGrid.SelectedIndex and column by dataGrid.CurrentColumn.DisplayIndex

public static DataGridCell GetCell(DataGrid dataGrid, int row, int column)
        {
            DataGridRow rowContainer = GetRow(dataGrid, row);
            if (rowContainer != null)
            {
                DataGridCellsPresenter presenter = GetVisualChild<DataGridCellsPresenter>(rowContainer);

                // try to get the cell but it may possibly be virtualized
                DataGridCell cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(column);
                if (cell == null)
                {
                    // now try to bring into view and retreive the cell
                    dataGrid.ScrollIntoView(rowContainer, dataGrid.Columns[column]);

                    cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(column);
                }

                return cell;
            }

            return null;
}

Edit

public static DataGridRow GetRow(DataGrid dataGrid, int index)
    {
    DataGridRow row = (DataGridRow)dataGrid.ItemContainerGenerator.ContainerFromIndex(index);
        if (row == null)
        {

            dataGrid.ScrollIntoView(dataGrid.Items[index]);
            dataGrid.UpdateLayout();

            row = (DataGridRow)dataGrid.ItemContainerGenerator.ContainerFromIndex(index);
        }

        return row;
    }

you can find the complete source code here (look for code at end of page)

share|improve this answer
haris, this sounds very promising. A pity they didnt implement the GetRow. DataGridRow rowContainer = GetRow(dataGrid, row); I thought first I could use datagrid.SelectedItem, but this would give me the ViewModel instead not the row...what am I missing? – Kave May 12 '11 at 14:22
1  
see edit. added the Get Row method – Haris Hasan May 12 '11 at 14:36
Thanks Harris. i also found this page. Its using Extension methods, very similar to yours. I am almost there. The last problem is I needed to extract a DataGridCellInfo. From my understanidng DataGridCellInfo is a column with additional row information. Do you have any idea how to retrieve that? I am trying to set dataGrid.CurrentCell in programmatic way – Kave May 12 '11 at 14:42
Do you want DataGridCell or DataGridCellInfo? – Haris Hasan May 12 '11 at 14:44
both :) I got now DataGridCell, and I am happy. But I just realized I also needed DataGridCellInfo. Is there a way to retrieve that too? – Kave May 12 '11 at 14:52
show 2 more comments

You can use CurrentCell.Item Property in the DataGrid itself:

DataGridCell cell = (DataGridCell)myDataGrid.CurrentCell.Item;
share|improve this answer
Unable to cast object of type 'RowViewModel' to type 'System.Windows.Controls.DataGridCell'. – Kave May 12 '11 at 13:22
Remove the .Item. It points to what is inside your DataGridCell, not the actual DataGridCell – Rachel May 12 '11 at 13:27
Cannot convert type 'System.Windows.Controls.DataGridCellInfo' to 'System.Windows.Controls.DataGridCell' – Kave May 12 '11 at 13:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.