I have a thread which invokes items to be added and would like the control to automaitcally scroll to the new entry. Does anyone know how I can do this?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Thanks I just found it after I posted…doh. Any idea how to fix a column width? I've got an image column like the sample which I don't want the user to resize.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have a thread which invokes items to be added and would like the control to automaitcally scroll to the new entry. Does anyone know how I can do this?
You can call Table.EnsureVisible when you add a new row. This will scroll the table to show the row you tell it to.
Adam
Thanks I just found it after I posted…doh. Any idea how to fix a column width? I've got an image column like the sample which I don't want the user to resize.
There is the bool Resizable property on a column. Should do the job.
Adam