Click here to Skip to main content
15,889,830 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,


I am trying refresh datagrid using following code:

lstMaskInfo.ItemsSource = maskDetailInfo;
//Error
Invalid cross-thread access.


where:

maskDetailInfo = new List<MASK_DETAILS>();
Posted

1 solution

You are accessing grid from a thread other than the one it was originally created on. For details How to solve "Cross thread operation not valid"[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900