XAML链接到窗口部分

时间:2012-08-21 14:23:12

标签: wpf xaml

在XAML中,如何设置超链接以将用户带到窗口的特定部分。就像你在HTML中使用锚标签一样。基本上我们希望用户能够点击错误列表中的错误,链接会将他们带到该区域。

1 个答案:

答案 0 :(得分:1)

XAML Hyperlink NavigateUri可以使用一些代码,即

<Window x:Class="fwAnchorInWindow.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <StackPanel>
        <TextBox x:Name="TextBoxName" Text="Enter Name"/>
        <TextBox x:Name="TextBoxNumber" Text="Enter Number"/>
        <TextBlock>
          <Hyperlink NavigateUri="TextBoxName" RequestNavigate="Hyperlink_RequestNavigate">
              There is a name error.
          </Hyperlink>
        </TextBlock>
    </StackPanel>
</Window>

using System.Windows;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Navigation;
namespace fwAnchorInWindow
{
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
        {
            if (sender is Hyperlink)
            {
                string controlName = ((Hyperlink)sender).NavigateUri.ToString();
                IInputElement control = (IInputElement)this.FindName(controlName);
                Keyboard.Focus(control);
            }
        }
    }
}

FindName只是查找子控件的一种方法。这篇文章还有其他方法:WPF ways to find controls

同样重要的是要注意WPF区分Logical Focus和Keybaord Focus:Mark Smith's It's Bascially Focus。在上面的代码中,键盘焦点会自动指示逻辑焦点。