Research Helper
Research Helper

Reputation: 33

Place an application's icon into system tray

I'm making a desktop mascot with unity, and I do not want to see the icon appearing on the task bar, I want the icon in the system tray. Is there a way to do this?

enter image description here

PS: This is NOT a windows form (it's a game), so I believe Form.ShowInTaskbar will not work.

Upvotes: 3

Views: 1951

Answers (1)

Flydog57
Flydog57

Reputation: 7111

I've never programmed in Unity, but I'm assuming you are working in a Windows window. If you make the top level window for the application not appear in the main area of the Taskbar, make the window a "Tool Window" (by setting the WS_EX_TOOLWINDOW extended style on the window), then the window/app will not show up on the taskbar.

I'll leave it to someone how knows enough Unity to tell you how to set that style. Here's a reference to start with (on the Windows side, not the Unity side): Managing Taskbar Buttons

Upvotes: 2

Related Questions