I'm using a Form to show notifications (it appears at the bottom right of the screen) but the problem that I'm having is that when I show this form it steals the focus from the main Form. Is there a way to show this "notification" form without stealing focus?
|
|
Hmmm, isn't simply overriding Form.ShowWithoutActivation enough?
And if you don't want the user to click this notification window either, you can override CreateParams:
|
|||||||||||||
|
|
Alex Lyman answered this, I'm just expanding it by directly pasting the code. Someone with edit rights can copy it over there and delete this for all I care ;) Stolen from pinvoke.net's ShowWindow method.:
|
|||||||||||||||
|
|
Using pure managed code, no, no there is not. If you're willing to use Win32 P/Invoke, then you can use the ShowWindow method (the first code sample does exactly what you want) |
|||
|
|
|
The sample code from pinvoke.net in Alex Lyman/TheSoftwareJedi's answers will make the window a "topmost" window, meaning that you can't put it behind normal windows after it's popped up. Given Matias's description of what he wants to use this for, that could be what he wants. But if you want the user to be able to put your window behind other windows after you've popped it up, just use HWND_TOP (0) instead of HWND_TOPMOST (-1) in the sample. |
|||||
|
|
Doing this seems like a hack, but it seems to work:
Edit: Note, this merely raises an already created form without stealing focus. |
|||||
|
|
You might want to consider what kind of notification would like to display. If it's absolutely critical to let the user know about some event, using Messagebox.Show would be the recommended way, due to it's nature to block any other events to the main window, until the user confirms it. Be aware of pop-up blindness, though. If it's less, than critical, you might want to use an alternative way to display notifications, such as a toolbar on the bottom of the window. You wrote, that you display notifications on the bottom-right of the screen -the standard way to do this would be using a balloon tip with the combination of a sys tray icon. |
|||
|
|
Create and start the notification Form in a separate thread and reset the focus back to your main form after the Form opens. Have the notification Form provide an OnFormOpened event that is fired from the
You can also keep a handle to your NotifcationForm object around so that it can be programmatically closed by the main Form ( Some details are missing, but hopefully this will get you going in the right direction. |
|||||||||
|
|
This works well:
|
||||
|
|
|
i know it may sound stupid .. but this one extremely worked !!!
|
|||
|
|
|
You can handle it by logic alone too, although I have to admit that the suggestions above where you end up with a BringToFront method without actually stealing focus is the most elegant one. Anyhow, I ran into this and solved it by using a DateTime property to not allow further BringToFront calls if calls were made already recently. Assume a Core Class 'Core' which handles for example three Forms 'Form1,2,3' Each form needs a DateTime property and an Activate event that call Core to bring windows to front :
And then create the work in the Core Class:
On a side note, if you want to restore a minimized window to its original state (not maximized), use:
Again, I know this is just a patch solution in the lack of a BringToFrontWithoutFocus. It is meant as a suggestion if you want to avoid the dll. Edit: grammar |
||||
|
|
|
I have something similar, and I simply show the notification form and then do
to bring the focus back on the main form. |
|||
|
|
|
In WPF you can solve it like this: In the window put these attributes:
The last one attribute is the one you need ShowActivated="False". |
|||
|
|
|
When you create a new form using
it steals focus because your code can't continue executing on the main form until this form is closed. The exception is by using threading to create a new form then Form.Show(). Make sure the thread is globally visible though, because if you declare it within a function, as soon as your function exits, your thread will end and the form will disappear. |
||||
|
|