我在 silverlight 工作,我无法设置文本块的焦点,而我找到了为文本框(使用Focus()
)而不是文本块的方法。
有人可以帮我设置下面文本块的重点(Silverlight 5)吗? :
TextBlock tb = new TextBlock();
答案 0 :(得分:1)
如果它不在浏览器应用程序中,
if (App.current.IsRunningOutOfBrowser)
{
tb.Focus();
}
else
{
System.Windows.Browser.HtmlPage.Plugin.Focus();
tb.Focus();
}