当前位置: 首页>>代码示例>>C#>>正文


C# Hyperlink.SetValue方法代码示例

本文整理汇总了C#中System.Windows.Documents.Hyperlink.SetValue方法的典型用法代码示例。如果您正苦于以下问题:C# Hyperlink.SetValue方法的具体用法?C# Hyperlink.SetValue怎么用?C# Hyperlink.SetValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Windows.Documents.Hyperlink的用法示例。


在下文中一共展示了Hyperlink.SetValue方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: SetLaunchHyperlink

 public static void SetLaunchHyperlink(Hyperlink element, bool Value)
 {
     element.SetValue(LaunchHyperlinkProperty, Value);
 }
开发者ID:ptownsend1984,项目名称:SampleApplications,代码行数:4,代码来源:ControlExtensions.cs

示例2: SetIsEnabled

 public static void SetIsEnabled(Hyperlink element, bool value)
 {
     element.SetValue(IsEnabledProperty, value);
 }
开发者ID:squaredinfinity,项目名称:Foundation,代码行数:4,代码来源:Hyperlink.OpenInDefaultBrowser.cs

示例3: SetNavigateExternally

 /// <summary>
 /// Sets whether the target <see cref="Hyperlink"/>'s RequestNavigation event should open the URI in the
 /// default web browser.
 /// </summary>
 public static void SetNavigateExternally(Hyperlink element, bool value)
 {
     element.SetValue(NavigateExternallyProperty, value);
 }
开发者ID:mihailim,项目名称:PoESkillTree,代码行数:8,代码来源:Helper.cs

示例4: SetWebUrl

 public static void SetWebUrl(Hyperlink element, string value)
 {
     element.SetValue(WebUrlProperty, value);
 }
开发者ID:matthiaswelz,项目名称:goprotimelapse,代码行数:4,代码来源:HyperlinkExtensions.cs

示例5: AddInlines

        public void AddInlines(InlineCollection inlineCollection, IEnumerable<ColorTextPair> pairs, bool allowHyperlinks)
        {
            Run run;
            foreach (ColorTextPair pair in pairs)
            {
                bool hasHyperlinks = false;
                if (allowHyperlinks)
                {
                    if (!string.IsNullOrEmpty(pair.Text))
                    {
                        MatchCollection matches = new Regex(ZChat.Options.HyperlinkPattern).Matches(pair.Text);
                        if (matches.Count > 0)
                        {
                            hasHyperlinks = true;
                            string linkText;
                            int linkStart = 0, linkLength = 0;
                            int curPos = 0;
                            foreach (Match match in matches)
                            {
                                if (match.Value.StartsWith(" "))
                                {
                                    linkStart = match.Index + 1;
                                    linkLength = match.Length - 1;
                                }
                                else
                                {
                                    linkStart = match.Index;
                                    linkLength = match.Length;
                                }
                                linkText = pair.Text.Substring(linkStart, linkLength);

                                Hyperlink link = new Hyperlink(new Run(linkText));
                                link.Foreground = ZChat.Options.LinkFore;
                                link.SetValue(KeyboardNavigation.IsTabStopProperty, false);
                                //if (link.FontStyle) link.TextDecorations.Add(TextDecorations.Underline);
                                link.Click += new RoutedEventHandler(link_Click);
                                link.Tag = linkText;
                                run = new Run(pair.Text.Substring(curPos, linkStart - curPos));
                                run.Foreground = pair.Color;
                                if (linkStart > 0) inlineCollection.Add(run);
                                curPos = linkStart + linkLength;
                                inlineCollection.Add(link);
                            }
                            if (curPos < pair.Text.Length)
                            {
                                run = new Run(pair.Text.Substring(curPos, pair.Text.Length - curPos));
                                run.Foreground = pair.Color;
                                inlineCollection.Add(run);
                            }
                        }
                    }
                }
                if (hasHyperlinks == false)
                {
                    AddNonHyperlinkText(inlineCollection, pair.Text, pair.Color);
                    //run = new Run(pair.Text);
                    //run.Foreground = pair.Color;
                    //inlineCollection.Add(run);
                }
            }
        }
开发者ID:atoumey,项目名称:z-chat,代码行数:61,代码来源:ChatWindow.cs


注:本文中的System.Windows.Documents.Hyperlink.SetValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。