❔ run WPF application as hidden in task bar
Hi i want to create WPF application to run it as hidden icon, not visible on task bar. how should i do it?
4 Replies
What's the reason for this? Maybe there's a better way to achieve what you want
i want to have program which runs in background
so employee won't close it for accident
for Windows, the obvious first thought is to make a Windows Service
otherwise, a program only does what you tell it to
if you don't want a tray icon, don't tell it to make one
if you don't want a console window, don't tell it to make one
etc.
in other words, create an empty console application, then get rid of the console part
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.