Must I litter my code with this.Invoke if a multi-thread a Winforms app?
I'm just wondering if there's a better pattern for accessing UI elements in a multi-threaded winform application. I'm currently using delegates and this.Invoke calls, which works, it just doesn't feel elegant.
Thanks.