Hi All
I have a real-time application which constantly updates a UI log (RichTextBox control) in the form of a ListView control. The control is updated with current application data received via events. My application was running very slow and i found it was due to the ListView log being updated, which blocks the UI thread. As you can imagine, the application appears highly unresponsive to the user.
I know it's possible to launch a WPF Window on it's own dedicated UI thread. I was wondering if it's possible to host a WPF Control on it's own UI thread so that the main UI thread updates the rest of the window without being blocked?
If this is not possible, please recommend alternatives to remedy this dilemma.
Thanks!