I am creating a master-details in windows form.
I created data source from entity model, then added master table from data source to be as application-form so I choose "Details" mode to display one row only.
Then I added the details table as DataGridView
mode to display all details row linked to the master row.
The problem is the column order is changed in the data source, not as the order in DB table, so the navigation order between columns is changed.
How to change the default "next item navigation" between textboxes by pressing tab in master textboxes?
Note: I meant "details" with " " is display mode in the data source, while details without " " means foreign key data.