![]() |
Taskbar toolbar with popup window C++
How can i make a taskbar toolbar that has a popup window when clicked? Sort of like apples itunes toolbar (seen here... http://gilsmethod.wpengine.netdna-cd...ws-taskbar.png).
|
hey artyboy2011, I believe you could make what apple's itunes have made by hiding the icon, in Visual Studio its simple; ShowIcon False under form properties.
Then set the windows form to be completely transparent like so: Code:
public:Code:
Form1->Location = Point(900, 900);Code:
Form->TopMost = true; |
i found a picture of almost exactly what i want. http://www.codeproject.com/KB/shell/...r/Calendar.png.
any ideas? Thanks |
Ok then you'll want to add your application's icon to the system tray. There are plenty of tutorials online to do just that, which to my understanding are relatively simple.
To make your program start as a system tray icon, use the code below: Code:
#include <windows.h>http://forum.codecall.net/java-tutor...plication.html http://www.codeproject.com/Articles/...m-in-the-Syste Below is with the use of a VS addon called Qt, which I just found out is pretty interesting. With it you could make a system tray icon simply by using the tutorial below. I don't expect you to use it, but you may find it enticing to use one day:https://qt-project.org/doc/qt-4.8/desktop-systray.html |
| All times are GMT +1. The time now is 06:15 PM. |
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.