首页 > 代码库 > WPF超级链接
WPF超级链接
一、添加样式
<Style x:Key="LinkLabelStyle">
<Setter Property="Control.Padding" Value="http://www.mamicode.com/0" />
<Setter Property="Control.VerticalAlignment" Value="http://www.mamicode.com/Center" />
</Style>
二、Xaml标记
<Label Canvas.Left="29" Canvas.Top="320" x:Name="productLink" x:Uid="productLink" Style="{StaticResource LinkLabelStyle}" >
<Label.Content>
<Hyperlink x:Name="hyperlink" x:Uid="hyperlink" NavigateUri="http://www.mtdzsp.com" Style="{StaticResource LinkLabelStyle}" Hyperlink.RequestNavigate="hyperlink_RequestNavigate">
<TextBlock Text="更多" Foreground="Black"/>
</Hyperlink>
</Label.Content>
</Label>
三、代码
private void hyperlink_RequestNavigate(object sender, System.Windows.Navigation.RequestNavigateEventArgs e) { if (e.Uri != null && string.IsNullOrEmpty(e.Uri.OriginalString) == false) { string uri = e.Uri.AbsoluteUri; Process.Start(new ProcessStartInfo(uri)); e.Handled = true; } }
WPF超级链接
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。