how to set focus to particular cell of WPF toolkit datagrid

后端 未结 5 1352
再見小時候
再見小時候 2020-12-29 08:58

I am using WPF toolkit provided DataGrid control to display product list along with its OpenStock, Description etc. In this DataGrid i have set OpenStock column to editable

5条回答
  •  心在旅途
    2020-12-29 09:21

    Use this code to move the scroll view to a specific cell:

    dgv.ScrollIntoView(dgv.Items[row], dgv.Columns[col]);
    

提交回复
热议问题