The system tray (or "systray") is a part of Microsoft Windows taskbar that is used to display some programs and notifications.
Questions tagged [systray]
108 questions
0
votes
0 answers
Python close file from another file
I'm in a pretty sticky situation... I've made an application on python, and then have SysTrayIcon to add a tray item for a user to easily show/hide/close the app.
Unfortunately, the quit method doesn't close my app at all, it just deletes the tray…

Angaros
- 1
- 1
0
votes
1 answer
Problem with NotifyIcon: "Hide Inactive Icons" not working
I am using C# (.NET 3.5) and use the NotifyIcon to enable "Minimize to Systray". Everything is working great, except that the shell registers the systray icon with the title "No title" when you look at the start menu properties -> "Hide Inactive…

Stefan Koell
- 1,476
- 3
- 15
- 25
0
votes
1 answer
Why my program is not responding after I want to show it?
I've made a small program with PyQT5 and SysTrayIcon (infi.systray), and if the program is closed (person pressed "X"), there is an option to open it with TrayIcon.
If the button "Open" pressed (in TrayIcon"), then the program must show as it was…
user14023416
0
votes
0 answers
"dead" tkinter windows after quitting
I have a script that creates a tray icon from where I call two different windows.
The tray icon library I'm using (infi.systray) creates a quit option automatically but if the windows are not closed they remain after quitting. They become non…

jdarias
- 1
0
votes
1 answer
Win7 systray style popup
Hello guys
I have an applcation that sets itself to 0 opacity on Form1_load which then changes to 1 when the user left clicks on the NotifyIcon. I would also like the form to center itself directy above the notifyicon like the Win7 speakers, power,…

uiandform
- 3
- 1
0
votes
1 answer
How to get answer from windows service
I´ve got a windows service and a NotifyIcon-Applicaiton (Sys-Tray) which should communicate with the service. The App should send a command and receive a PORT from the service for a socket which provides the further communication.
The Service…

Felix Arnold
- 839
- 7
- 35
0
votes
0 answers
Using a dialog/window app with a SysTray icon: focus problem
I want to use a dialog together with the SysTrayIcon.
The reason for the app is running in a systray, and show the dialog when you press the icon button. The app will close entirely just from the menu option.
Problem to solve: when lose focus…

eddy2k
- 119
- 1
- 12
0
votes
1 answer
Pystray with tkinter TypeError: takes 1 positional argument but 2 were given
Normally when I code without objects oriented my tkinter program like:
from pystray import MenuItem as item
import pystray
from PIL import Image
import tkinter as tk
window = tk.Tk()
window.title("Welcome")
def quit_window(icon, item):
…

pigman
- 43
- 9
0
votes
1 answer
What does Stray start tag html error mean?
So I made this simple HTML code so far and it's already giving errors with the Validator! I don't understand what's wrong, can someone help?
…

Zami Coskula
- 53
- 2
- 6
0
votes
0 answers
Listing systray app in bash
I would like to make a specific command for lemonbar or rofi/dmenu that could tell me applications which are minimized on systray, I looked on wmctrl and xdotool but none of those does the job.
Anyway to get that information with other command ?

sigz
- 89
- 1
- 8
0
votes
1 answer
Csharp, how to call a form object from a tray based application
Possible Duplicate:
C#, how to call a form object from a tray based application
Hi guys,
Iam trying to load a form class from a program running as a tray icon that originally used
"FileList frmFileList = new FileList();" Now instead of a…

DOSrelic
- 1
- 1
- 2
0
votes
2 answers
Set icon in front of menu entry in systray app
is it possible to set a custom icon in front of the menu entries "Top Menu, Middle Menu, Last Menu" in the systray app below?
#!/usr/bin/python
# -*- coding: utf-8 -*-
import wx
import sys
TRAY_TOOLTIP = 'Tray App'
TRAY_ICON =…

hehe_br
- 127
- 1
- 6
0
votes
1 answer
How to display an icon in the systray reflecting NumLk state
My computer doesn't have any way of letting me know if my NumLk is on or off, so I am trying to add an icon in my systray that will changed depending on the state of my NumLk. This .py will always be running when my computer is on.
So far I was…

MagTun
- 5,619
- 5
- 63
- 104
0
votes
2 answers
when connecting Hyper-V virtual switch to Wi-Fi - systray network wireless icon turns into wired icon
Running Windows 10 Pro, latest version. Setting up my first Hyper-V VM. Noticed that when I configure an external Virtual Switch on my Wi-Fi adapter, the host machine (Windows 10 Pro) network connection icon changes from wireless to wired…

Uri
- 391
- 4
- 13
0
votes
1 answer
Qt Systray icon cannot be implemented
i have a window with a Pushbutton that hides the window to system tray when it is pushed.
The problem is that no system tray icon is shown.
Here is the code, what i do wrong?
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include…

demosthenes
- 1,151
- 1
- 13
- 17