Ok, have a WPF form. It looks pretty. It runs in its own runspace. Awesome. Now I'm trying to connect UI element actions output to the output box I've got. I can update the outputbox fine from the main UI runspace using a nice little function using the dispatcher. But as soon as I have an event fire, like combobox.add_selectionchanged, that I want runspaced so I can have the work it's doing separated from the UI, I lose the ability to update the UI runspaces output text box. I've tried everything that seems logical to me. But the basic question is how can I edit the UI in a parent runspace from a child runspace?
Todd