在 XAML 中,我如何设置超链接以将用户带到我的窗口的特定部分。就像您如何在 HTML 中使用锚标记一样。基本上,我们希望用户能够点击错误列表中的错误,然后链接会将他们带到该区域。
问问题
165 次
1 回答
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 方法来查找控件。
同样重要的是要注意 WPF 区分 Logical Focus 和 Keybaord Focus:Mark Smith 的 It's Bascially Focus。在上面的代码中,键盘焦点自动表示逻辑焦点。
于 2012-08-21T15:49:30.083 回答