I am new to using the WPF DataGrid and I'm kind of lost. What I have is a DataTable with numeric values to which I bind the DataGrid via a DataView. What I want to do is compare the values of each column, and make the cell that has the bigger value per column, bold. (e.g. Who wins in each category)
There's no ObservableCollection, no fancy stuff. I'm just adding data to a DataTable the "manual" way, getting the values cell-by-cell from an SQLite database DataTable response. Even the columns are created programatically, and not via XAML. I have almost no experience in XAML, so don't assume I've worked with Triggers or anything.
How would I go about doing something like this?