Quote:
Originally Posted by omosis2
What should I do for my wpf grid to receive and handle data although notifications arrive from a secondary thread.
|
I use dapfor wpf gridcontrol and when your row stay at the top and the bottom of your hierarchy, it is called docking of row.
C#
//Dock row to the bottom
grid.Rows

.Dock = RowDockStyle.Bottom;
//Dock row to the top
grid.Rows[9].Dock = RowDockStyle.Top;
//Undock row
grid.Rows[0].Dock = RowDockStyle.None;