Search code examples
eto

How to bring an application to the front with picoe/Eto on Mac OSX?


I want to minimize the main window of a C#/Eto app and switch to another program. But when a timer in the Eto app fires it opens a new window, which I want to see. It should be displayed on top of all other windows currently open. The focus may switch to that window, but it's ok if not.

Using BringToFront() of the Form class does not work.

What else could I do?


Solution

  • Due to the way Apple made OS X, you are unable to make a window go to the top with programming. On Windows it is different.

    Good luck!