If my programmer creates a .dll that I can reference in my WPF project, and his .dll contains an array or collection of continuously changing data, what is the best way for me to update many individual controls on my WPF form?
- The controls will be objects like textBlocks...
- The .dll can contain any type of data object for my program to access, and expose any properties necessary for effective connections to my controls...
Can I bind each control to individual array elements, or will I need a more sophisticated collection object?
What would be the best way to distribute the data to each control if binding won't work?