4 instantiations of Hyperlink
PresentationFramework (4)
src\Framework\System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
174Hyperlink link = new Hyperlink();
src\Framework\System\Windows\Documents\FixedElement.cs (1)
259Hyperlink link = new Hyperlink();
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5168bamlType.DefaultConstructor = delegate() { return new System.Windows.Documents.Hyperlink(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1322case KnownElements.Hyperlink: o = new System.Windows.Documents.Hyperlink(); break;
89 references to Hyperlink
PresentationFramework (89)
src\Framework\MS\Internal\AppModel\RequestStatusBarUpdateEventArgs.cs (2)
38base.RoutedEvent = System.Windows.Documents.Hyperlink.RequestSetStatusBarEvent; 57base.RoutedEvent = System.Windows.Documents.Hyperlink.RequestSetStatusBarEvent;
src\Framework\MS\Internal\AppModel\RootBrowserWindow.cs (1)
114AddHandler(Hyperlink.RequestSetStatusBarEvent, new RoutedEventHandler(OnRequestSetStatusBar_Hyperlink));
src\Framework\System\Windows\Automation\Peers\HyperlinkAutomationPeer.cs (5)
20public HyperlinkAutomationPeer(Hyperlink owner) 57Hyperlink owner = (Hyperlink)Owner; 91Hyperlink owner = (Hyperlink)Owner;
src\Framework\System\Windows\Controls\DataGridHyperlinkColumn.cs (5)
36Hyperlink.TargetNameProperty.AddOwner( 128Hyperlink link = outerBlock.Inlines.FirstInline as Hyperlink; 174Hyperlink link = new Hyperlink(); 185ApplyBinding(link, Hyperlink.NavigateUriProperty);
src\Framework\System\Windows\Documents\FixedElement.cs (4)
120Hyperlink.NavigateUriProperty.AddOwner( 259Hyperlink link = new Hyperlink(); 326Hyperlink.RaiseNavigate(page, args.Uri, null); 429return typeof(Hyperlink);
src\Framework\System\Windows\Documents\FixedPage.cs (2)
566new PropertyChangedCallback(Hyperlink.OnNavigateUriChanged), 567new CoerceValueCallback(Hyperlink.CoerceNavigateUri)));
src\Framework\System\Windows\Documents\FixedTextBuilder.cs (2)
1473_currentFixedElement.SetValue(Hyperlink.NavigateUriProperty, hyperlink.Uri); 1771_currentFixedElement.SetValue(Hyperlink.NavigateUriProperty, navUri);
src\Framework\System\Windows\Documents\Hyperlink.cs (29)
51DefaultStyleKeyProperty.OverrideMetadata(typeof(Hyperlink), new FrameworkPropertyMetadata(typeof(Hyperlink))); 52_dType = DependencyObjectType.FromSystemTypeInternal(typeof(Hyperlink)); 53FocusableProperty.OverrideMetadata(typeof(Hyperlink), new FrameworkPropertyMetadata(true)); 54EventManager.RegisterClassHandler(typeof(Hyperlink), Mouse.QueryCursorEvent, new QueryCursorEventHandler(OnQueryCursor)); 113Hyperlink hyperlink = navigator.GetAdjacentElement(LogicalDirection.Forward) as Hyperlink; 153typeof(Hyperlink), 176Hyperlink h = (Hyperlink)d; 267typeof(Hyperlink), 296typeof(Hyperlink), 335typeof(Hyperlink), 398= DependencyProperty.Register("TargetName", typeof(String), typeof(Hyperlink), 443typeof(Hyperlink)); 463public static readonly RoutedEvent ClickEvent = System.Windows.Controls.Primitives.ButtonBase.ClickEvent.AddOwner(typeof(Hyperlink)); 478typeof(Hyperlink)); 599Uri cachedUri = Hyperlink.s_cachedNavigateUri.Value; 609if (!(sourceElement is Hyperlink)) 669Hyperlink hl = element as Hyperlink; 728RaiseEvent(new RoutedEventArgs(Hyperlink.ClickEvent, this)); 848Hyperlink link = (Hyperlink)sender; 925typeof(Hyperlink), 965if (fce != null && (fce is Hyperlink)) 994if (!(element is Hyperlink)) 1199Hyperlink hl = sender as Hyperlink;
src\Framework\System\Windows\Documents\TextPointerBase.cs (1)
311return IsInAncestorScope(position, typeof(Inline), typeof(Hyperlink));
src\Framework\System\Windows\Documents\TextRangeEdit.cs (3)
1501else if (startPosition.Parent is Hyperlink && ((Hyperlink)startPosition.Parent).IsEmpty) 1503((Hyperlink)startPosition.Parent).Reposition(null, null);
src\Framework\System\Windows\Documents\TextRangeSerialization.cs (7)
231if (nextElement is Hyperlink) 277if (ignoreWriteHyperlinkEnd && (textReader.GetAdjacentElement(LogicalDirection.Forward) is Hyperlink)) 453if (thisElement.ParentType == typeof(Hyperlink)) 1901Invariant.Assert(typeof(Hyperlink).IsAssignableFrom(textReader.GetElementType(LogicalDirection.Forward))); 1906Hyperlink hyperlink = (Hyperlink)textReader.GetAdjacentElement(LogicalDirection.Forward); 1950!typeof(Hyperlink).IsAssignableFrom(hyperlinkStart.ParentType))
src\Framework\System\Windows\Documents\TextSchema.cs (14)
133if (typeof(Hyperlink).IsAssignableFrom(childType) || 225if (typeof(Hyperlink).IsAssignableFrom(childType) || 246while (ancestor != null && !(ancestor is Hyperlink)) 376else if (typeof(Hyperlink).IsAssignableFrom(type)) 378return typeof(Hyperlink); 490else if (typeof(Hyperlink).IsAssignableFrom(type)) 828else if (typeof(Hyperlink).IsAssignableFrom(parentType)) 831!typeof(Hyperlink).IsAssignableFrom(childType) && 901if (nextElement is Hyperlink || 956Hyperlink.NavigateUriProperty, 957Hyperlink.TargetNameProperty, 958Hyperlink.CommandProperty, 959Hyperlink.CommandParameterProperty, 960Hyperlink.CommandTargetProperty,
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
365case 273: t = () => typeof(Hyperlink); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (6)
2942Type type = typeof(System.Windows.Documents.Hyperlink); 2943DependencyProperty dp = System.Windows.Documents.Hyperlink.NavigateUriProperty; 2945this.GetXamlType(typeof(System.Windows.Documents.Hyperlink)), // DeclaringType 4773Type type = typeof(System.Windows.Documents.Hyperlink); 4775this.GetXamlType(typeof(System.Windows.Documents.Hyperlink)), // DeclaringType 4781bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.Hyperlink)target).Inlines; };
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5166typeof(System.Windows.Documents.Hyperlink),
src\Framework\System\Windows\Markup\KnownTypes.cs (2)
1829return System.Windows.Documents.Hyperlink.NavigateUriProperty; 5817case KnownElements.Hyperlink: t = typeof(System.Windows.Documents.Hyperlink); break;
src\Framework\System\Windows\Navigation\NavigationService.cs (2)
3817iie.RemoveHandler(Hyperlink.RequestNavigateEvent, navHandler); 3832iie.AddHandler(Hyperlink.RequestNavigateEvent, navHandler);
src\Framework\System\Windows\Navigation\RequestNavigateEventArgs.cs (2)
31base.RoutedEvent=System.Windows.Documents.Hyperlink.RequestNavigateEvent; 45base.RoutedEvent=System.Windows.Documents.Hyperlink.RequestNavigateEvent;