vote up 0 vote down star

I have written a simple msn-style program that will send en retrieve messages using WCF. The main form contains a Textbox to type in the message to be sent. In the background the application polls the server every few seconds for new messages. When a new message is received a new window is opened to display it. This has to be done on the UI thread using the Dispatcher class. The problem is that when the new window is shown, the focus shifts away from the TextBox, so that typing is interrupted. This is very annoying! In msn-messenger it is possible to continue typing your own message while receiving one. How is it done? As a workaround I postpone the popup with the new message while the TextBox has focus, but there should be a better way!

flag

Is there a way to open a new window without it being focused? – matt b Sep 21 at 20:03

3 Answers

vote up 1 vote down

You can show windows without stealing focus: http://stackoverflow.com/questions/156046/show-a-form-without-stealing-focus-in-c

It's a bit cludgy and it'd be nice if it were built in - but it works.

link|flag
Thanks for the link. It pointed me in the right direction. – Dabblernl Sep 22 at 5:59
vote up 2 vote down check

The answer is simple: Since .Net 3.5 SP1 wpf forms have a ShowActivated property. Set this to false and the form thus marked won't steal no focus no more!

link|flag
vote up 0 vote down

You could set the Focusable property of the window to false.

link|flag
Not in this case. The user must be able to interact with the form – Dabblernl Sep 22 at 11:37

Your Answer

Get an OpenID
or

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