I am working in a windows application using c#. My application have 5 forms totally. My program controls all the 5 forms to block the user for different reasons they are invoked based on the UDP message my program recieves. Only one form will be UP at one time. I want the behavior of all the forms such like It should block the entire screen and user should not be able to bipass the form untill my program recieves a specific UDP message. [This is Kiosk application and user is blocked from using Alt + Tab and Task Manager]
The problem is, some application parrelley in full screen mode forces my form to go behind. That should not be the case.
I tried using SetWindowPos Function, But not helping.
what will be the other way to do it ?