vote up 1 vote down star
2

Hi everyone, I develop a window form application that shows message like msn alert at the right corner of desktop. I set form's topmost property to true but it steals other application's focus while I work on them. I don't want application steal the focus that is annoying. How can I solve this problem . Any suggestion?

Best regards.

flag

2 Answers

vote up 2 vote down

Override the Form's CreateParams and ShowWithoutActivation properties, like this:

protected override CreateParams CreateParams
{
  get
  {
    CreateParams baseParams = base.CreateParams;

    // WS_EX_NOACTIVATE = 0x08000000,
    // WS_EX_TOOLWINDOW = 0x00000080,
    baseParams.ExStyle |= ( int )( 
      Win32.ExtendedWindowStyles.WS_EX_NOACTIVATE | 
      Win32.ExtendedWindowStyles.WS_EX_TOOLWINDOW );

    return baseParams;
  }
}

protected override bool ShowWithoutActivation
{
  get { return true; }
}
link|flag
vote up 0 vote down

That's normally very hard to do. You'd have to P/Invoke SetForegroundWindow() and Windows usually steps in if the user is working actively in another window. You'd get a blinking taskbar button, you've probably seen it before.

Update your question with some sample code that reproduces this behavior.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.