I have developed a multi form application in C#!
I do not start them in different threads. I simply create new forms like this:
How ever these forms act like they run in two different threads! They are both active and can perform actions!
I have checked my task manager. No matter how many forms I start, the number of threads is still the same!
I was wondering what is happening underneath.
Anyone can shed any light on this issue?
Thanks
I do not start them in different threads. I simply create new forms like this:
Code:
this.Form= new Form1(); this.Form.Show();
I have checked my task manager. No matter how many forms I start, the number of threads is still the same!
I was wondering what is happening underneath.
Anyone can shed any light on this issue?
Thanks
Comment