Is there any way to tell whether a control (specifically a System.Windows.Controls.TextBox) is focused in Silverlight? I\'m looking for something like the following (what you wo
You have to use FocusManager
bool b = FocusManager.GetFocusedElement() == textBox;