码迷,mamicode.com
首页 > Windows程序 > 详细

WPF超级链接

时间:2014-10-11 10:00:15      阅读:359      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   for   sp   div   

一、添加样式

<Style x:Key="LinkLabelStyle">   
<Setter Property="Control.Padding" Value="0" />
<Setter Property="Control.VerticalAlignment" Value="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超级链接

标签:style   blog   http   color   io   ar   for   sp   div   

原文地址:http://www.cnblogs.com/OnlyVersion/p/4018344.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!