Relative Content

Tag Archive for c#winformstask

Leave task running in Windows Forms even if the form is hidden

I’m writing a program in C# using Windows Forms. I have two forms where in one there is an async task that executes something. I would like to know how I can leave that task running, even if I close or hide (please suggest me the best way) the form, and report the result of the task in another forms once it’s done.

Leave task run on windows forms even the forms is hide

I’m writing a program in c# windows forms. I have two windows forms where in one there is an asynch task that execute something. I would like to know how can leave the task run even I close or hide (please suggest me the best way) the forms and report the result of the task in another forms.