C# MDI application with separate GUI threads for each child in MDI is that possible ?
For example if one of the child forms is blocked by some synchronous request it freezes the entire container ( MDI Parent ) and the other windows open also become in accessible.
In general , is it possible to have more than one GUI thread in .net windows form app domain ?
In visual studio default winform application has STA ( single threaded apartment ) setup. In theory I understand what MTA means here but what is the practical use of it.
In my use case the individual mdi child are developed by various teams who may not defer blocking calls in an async manner , so I am just wondering if its possible to have multiple UI threads , although its not advisable - I completely agree.
edit #1:
I can think of google chrome browser as an example where individual tab is a separate process probably with a dedicated GUI thread ? Is something like this possible in a dot.net app.