如何设置文本块的焦点超出浏览器?

时间:2014-07-22 11:36:08

标签: c# .net silverlight silverlight-5.0 setfocus

我在 silverlight 工作,我无法设置文本块的焦点,而我找到了为文本框(使用Focus())而不是文本块的方法。

有人可以帮我设置下面文本块的重点(Silverlight 5)吗? :

TextBlock tb = new TextBlock();

1 个答案:

答案 0 :(得分:1)

如果它不在浏览器应用程序中,

    if (App.current.IsRunningOutOfBrowser)
    {
        tb.Focus();
    }
    else
    {
        System.Windows.Browser.HtmlPage.Plugin.Focus();
        tb.Focus();
    }