How is each row content in the DataGridView added? #369
Answered
by
Hirogen
ringchenhao
asked this question in
Q&A
-
I stepped through the code and generally understand the process, but specifically regarding how rows are displayed in the DataGridView after the LoadingFinished , I still don't fully grasp it. it seems that when i step after "dataGridView.Enabled = true",and the contents are being showed on the dataGridView.
|
Beta Was this translation helpful? Give feedback.
Answered by
Hirogen
Mar 26, 2025
Replies: 1 comment 2 replies
-
Go through LoadFile in LogWindowsPublic.cs and then work your way through it, and it will be clear |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes: public void CellPainting(DataGridView gridView, int rowIndex, DataGridViewCellPaintingEventArgs e)
Paints the current logline.
Its implemented that way, because its to slow if you add the file as datasource to the datagrid, also the datagrid does not support files that are updated every 10 ms etc.