taskbar

How to Detect a Right Click on Taskbar in WPF

I've got a WPF application in C# that starts off with a loading dialog. As expected, a button for the app shows up in the Windows taskbar. I would like to detect right-clicks that might be done to that button. Ultimately, I hope to disable the right-click or simply have the loading dialog regain focus. I've seen that some people use cu...

WinForms Taskbar Icon - Click Event not firing

I have created a non-form c# program that uses the NotifyIcon class. The text "(Click to Activate)" shows up when I hover the mouse. So I am getting some events handled. However, The "Click" event does not fire and the Context menu doesnt show up. public class CTNotify { static NotifyIcon CTicon = new NotifyIcon(); static Cont...

Service Application too visible

Working on a service application in Delphi 5 that is intended to run on Windows XP - 7. Most of the application is coming together nicely, but I'm running into one issue. Part of this service application is a form that displays data occasionally (similar to the slider box Avast uses to let you know its updated). When the service shows...

Show a taskbar item with a NativeWindow

My application is intended to work almost entirely through a Windows 7 taskbar item with the use of thumbnails and jump lists. I know I can easily create a Form and simply hide it, but this seems like overkill. Plus, I'd like to toy around with NativeWindow as much as possible, because I've never used it before. Essentially, I have a cl...

Delphi form icons are blurry on Windows 7's taskbar (with MainFormOnTaskbar enabled)

We have a Windows desktop application written in Delphi that works fine on Windows 7, except that the icon of the main form looks blurry in Windows' new taskbar. As long as the application has not been started the icon looks fine (i.e. when it's pinned to the taskbar). Once it has been started Windows uses the icon of the main form (ins...

Get Taskbar's Battery and PhoneSignal indicators icons and draw into a picturebox

Is there any way to get taskbar's battery and phonesignal indicators icons and then draw into a picturebox or something? Why do I need this? I need all screen space available, so all forms are maximized and they cover up the windowsmobile taskbar. But, I have to display information about battery e phone signal strength in just a coup...

Windows 7 application taskbar icons, font size and shortcuts

We have come across some behaviour involving the taskbar icons that Windows 7 displays for different applications. I'm wondering whether anybody could shed some light on this: Windows 7 is set with font-size = 110%. Two MFC dialog applications A.exe and B.exe have exactly the same .ico resource embedded in them. A.exe has a shortcut as...

Java JFrame Remove from Taskbar

i did a quick topic look and did not find something similar. my query is how do i prevent a child window appearing on the windows taskbar when it is shown? ...

How can I have my Windows Form application minimize to system taskbar?

My dream is to make a very good, open source Help desk application for companies to use for free. My client application will run on every client computer have minimize itself to the task bar. When the user click the icon, it'll open the actual Winform window. I'm using .NET 3.5; is there a simple way to minimize/maximize from the taskb...

Update of application Icon in Windows-7 Taskbar

I have a normal MFC Application with an embedded icon. If I start the application, the icon is shown inside the windows-7 taskbar. But when I change the icon inside the resources, rebuild the application and start it, the taskbar doesn't show the current icon, but the icon from the first run. There is no special code inside the applic...

How to flash the JFrame on Windows taskbar when it needs attention?

Hi, i'm a computer science student working on a Yahoo Messenger - like program implemented in Java. My problem is that whenever the JTextArea inside my frame contains new message updates, the user must be prompted even when his/her frame is minimized. Is there a workaround on how to make the JFrame on the taskbar blink when updates are ...

Application icon is missing in the taskbar during program start, if another application is active

Hi, I've written a WPF application which has a custom (not the standard) icon. A Splashscreen is implemented too. The icon is correctly displayed if I start the application and wait until it is loaded. But, if I start my application and switch to another application (e.g. Outlook) before the my splash screen is shown, the icon is not ...

C# - How to prevent fullscreen form covering the taskbar?

Hello. Does anyone know how I can prevent my C# winform covering/going on top of the taskbar? My form's border style has been set to "FixedToolWindow" which seems to cause this. I thought about reducing the height of the form, when the user makes the form maximized, but that wouldn't work as people may have different size taskbars. Any i...

How can I make a numerical value for a taskbar icon in C#?

I'm trying to find a way to display the current processor time of an application to the user via the taskbar when my application is minimized. For reference, I want something like what is implemented in Coretemp, where if you minimize the application, you can still see the temperature of the computer processor cores in the taskbar. Does ...

How to dock an application in the Windows desktop?

I would like to develop a small notifications application for Windows in .NET that docks on the right/left side of the screen (not consuming more than 300px), should always be visible and force the rest of windows to not overlap this application (something like the old Office taskbar or Vista's Sidebar). I have no idea where to start. Ca...

How do I set AppUserModelID on shortcut?

I'm in Windows 7 working on combining two apps with the same task bar icon, as described in this question: http://stackoverflow.com/questions/1330939/pinning-advertised-shortcuts-on-the-taskbar-in-windows-7 I see there, and it lots of online documentation that I need to set the AppUserModelID as a property of the shortcut. My installe...

How to add OSX menu bar icon with wxPython

I would like to add an icon to the OSX menu bar at the top of the screen using wxPython. I have tried wx.TaskBarIcon, which adds a System Tray icon in Windows, but this doesn't work - it changes the Dock icon for the app instead. Does anyone know how to do this? ...

What event is sent to a Windows Forms window when its button from the taskbar is clicked?

When the user clicks the window title/button in the taskbar, what .NET event (or Windows API message) is sent to the window? I'm using C#/.NET 2.0/Windows Forms. Thank you ...

Adding items to other applications taskbar menu in Windows 7

Is it possible to add other menu items to other pinned applications right click menu in the Windows 7 taskbar? I'm using .NET, but I will accept P/Invokes as well. I've been reading the documentation on the API, and can't seem to find a way to do this. I just thought I'd check here as a last ditch effort to find a way. ...

How can I make a changing numerical value for a taskbar icon in C#?

I'm trying to make a program in C# that monitors the processor time of an application. I'd like to have a feature in this program where the task-bar icon is actually a number representing the processor time (like what coretemp has). How would I go about doing something like this? ...