views:

596

answers:

1

I am creating some always-on-top toasts as forms and when I open them I'd like them not to take away focus from other forms as they open. How can I do this?

Thanks

+6  A: 
protected override bool ShowWithoutActivation
{
    get
    {
        return true;
    }
}

Override this property in your form code and it should do the trick for you.

Adam Robinson