I have an UWP Data Grid with some columns.
DataGrid.ItemsSource is feed with observableCollection
Now I add a new row to observableCollection. New row appers on datagrid.
Now I want to set second column (not first) of my UWP DataGrid as edited with cursor inside it, so the user could simply start type in this field.
The type of column is DataGridTextColumn - so there should be not e problem.
How to do such case.