How to navigate to screen selected by Graphics capture picker in UWP

187 Views Asked by At

I am developing an UWP application in which i used graphics capture picker to select the window to record, but i want, when some one select window then UWP application should get minimize and that other display should come into focus

1

There are 1 best solutions below

0
On

If the user minimizes a uwp app or switches to another app, this uwp app will be suspended. Besides, GraphicsCapturePicker control must be called from a UI thread, which means it will prevent the GraphicsCapturePicker control from appearing if the uwp app is minimized.

Therefore, I have to say that there is no way could implement your requirement.