TripleSlice / F1Telemetry

Telemetry for the F1 23 game which gives different overlays which can be customized
GNU General Public License v3.0
14 stars 1 forks source link

Replace multiple DataGrid in Tyre module #24

Closed ryanabaker closed 2 years ago

ryanabaker commented 2 years ago

Replace all DataGrid controls with the DataGridView control instead.

This might solve the issue of having to use multiple data grids in order to toggle columns of a DataGrid. Check how to toggle a specific column in the DataGridView, and migrate over to 1 DataGridView if applicable

ryanabaker commented 2 years ago

Replace all DataGrid controls with the DataGridView control instead.

This might solve the issue of having to use multiple data grids in order to toggle columns of a DataGrid. Check how to toggle a specific column in the DataGridView, and migrate over to 1 DataGridView if applicable

DataGridView is a WindowForms thing, not a WPF thing. Changing task to be about looking into getting rid of multiple datagrids in the Tyre module.