c# - ProgressBar as background for DataGridView rows -
Is it possible to set progress bar in the form of background for the DataGridView line? Or only one part of the line from left to right? I have rows that represent some dynamically changing data and I have to show this progress somehow I want to use a full line background as a progress bar, how can I do this?
If you want to use the entire line then it is best to override the DataGridRow Using
DataGrid.RowStyle , you then burn a progress below other content, for example
Comments
Post a Comment