Our kiosk-mode application starts a forms-based utility using Process.Start()
. On one device type, once in a while the main application gets activated directly after the start of the utility for some (unknown) reason, hiding the UI of the utility app. Is there a way to keep the utility activated? We're currently using TopMost = true
, but that doesn't prevent the focus from beeing transfered to the main application, causing hotkeys not to behave as expected.
Workflow:
- Application A currently displays a form (AnotherForm) opened with
ShowDialog()
somewhere in the app - AnotherForm contains a button that will start application B by calling
Process.Start()
- Application B opens a form (YetAnotherForm) using
Application.Run()
I finally gave up and implemented a simple logic that prevents the utility form from beeing deactivated: