I need code that will force Silverlight to commit the focused element (in my case a TextBox, but it could be anything). In WPF I use

        public static void CommitFocusedElement() {
        UIElement element = Keyboard.FocusedElement as UIElement;
        if (element != null) {
            TraversalRequest request = new TraversalRequest(FocusNavigationDirection.Next);
            FocusNavigationDirection directionBack = FocusNavigationDirection.Previous;
            if (!element.MoveFocus(request)) {                    
                request = new TraversalRequest(FocusNavigationDirection.Previous);
                directionBack = FocusNavigationDirection.Next;
                element.MoveFocus(request);
            }
            if (element.Focusable)
            {
                element.Focus();
            }
            else
            {
                element.MoveFocus(new TraversalRequest(directionBack));
            }
        }
    }

But several parts of this code is not Silverlight compatible. Can anyone point me to a Silverlight alternative?

Thanks.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I'm assuming you want to update the source of a binding. If you're not, you probably should.

BindingExpression expression = textBox1.GetBindingExpression(TextBox.TextProperty);
expression.UpdateSource();
link|improve this answer
Thanks. If I don't know the exact element I want to update, is there a way to enumerate through all the element on the active control/window? – JeffN825 Jun 4 '10 at 12:34
@jeffn825: You can iterate over the children of an element using the VisualTreeHelper: msdn.microsoft.com/en-us/library/ms635657(v=VS.95).aspx, but I doubt that's necessary. All sources should be updated automatically once the user clicks or tabs anywhere. – Eric Mickelsen Jun 4 '10 at 13:03
Doesn't seem to be happening. Specifically, I have a user typing into a textbox, then they hit enter. This should programmatically launch a new form using the info from the textbox...but the textbox doesn't seem to have committed the value. There are many textboxes though, so I don't know at runtime which textbox the user was typing into when they hit enter... – JeffN825 Jun 4 '10 at 14:13
@jeffn825: That's just because the focus has yet to leave the text box when you're doing your processing. Just call Focus on some other element (and maybe call UpdateLayout), before you trust the data from the textboxes. – Eric Mickelsen Jun 4 '10 at 14:47
I already tried calling Focus on the parent Window and that didn't seem to do the trick...any idea why? – JeffN825 Jun 4 '10 at 15:48
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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