30 references to BaseUriProperty
PresentationCore (1)
System\Windows\Navigation\BaseUriHelper.cs (1)
545baseUri = doCurrent.GetValue(BaseUriProperty) as Uri;
PresentationFramework (29)
System\Windows\Controls\Frame.cs (2)
178return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 182SetValue(BaseUriHelper.BaseUriProperty, value);
System\Windows\Controls\Image.cs (2)
285return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 289SetValue(BaseUriHelper.BaseUriProperty, value);
System\Windows\Documents\DocumentReference.cs (2)
174get { return (Uri)GetValue(BaseUriHelper.BaseUriProperty); } 175set { SetValue(BaseUriHelper.BaseUriProperty, value); }
System\Windows\Documents\DocumentSequence.cs (2)
478get { return (Uri) GetValue(BaseUriHelper.BaseUriProperty); } 479set { SetValue(BaseUriHelper.BaseUriProperty, value); }
System\Windows\Documents\FixedDocument.cs (2)
178get { return (Uri) GetValue(BaseUriHelper.BaseUriProperty); } 179set { SetValue(BaseUriHelper.BaseUriProperty, value); }
System\Windows\Documents\FixedPage.cs (2)
349get { return (Uri) GetValue(BaseUriHelper.BaseUriProperty); } 350set { SetValue(BaseUriHelper.BaseUriProperty, value); }
System\Windows\Documents\Glyphs.cs (2)
83return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 87SetValue(BaseUriHelper.BaseUriProperty, value);
System\Windows\Documents\Hyperlink.cs (2)
757return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 761SetValue(BaseUriHelper.BaseUriProperty, value);
System\Windows\Documents\PageContent.cs (2)
308return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 312SetValue(BaseUriHelper.BaseUriProperty, value);
System\Windows\FrameworkTemplate.cs (1)
748if (dependencyProperty == System.Windows.Navigation.BaseUriHelper.BaseUriProperty)
System\Windows\Markup\BamlRecordReader.cs (1)
4479SetDependencyValue(doRoot, BaseUriHelper.BaseUriProperty, baseuri);
System\Windows\Markup\XamlReader.cs (3)
473(rootObject as DependencyObject).SetValue(BaseUriHelper.BaseUriProperty, parserContext.BaseUri); 944dObject.SetValue(BaseUriHelper.BaseUriProperty, parserContext.BaseUri); 1092dObject.SetValue(BaseUriHelper.BaseUriProperty, readerSettings.BaseUri);
System\Windows\Navigation\NavigationService.cs (3)
764curBaseUri = (Uri)(dobj.GetValue(BaseUriHelper.BaseUriProperty)); 773dobj.SetValue(BaseUriHelper.BaseUriProperty, baseUri); 3215Uri baseUri = pfBase.GetValue(BaseUriHelper.BaseUriProperty) as Uri;
System\Windows\Navigation\NavigationWindow.cs (3)
392return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 396SetValue(BaseUriHelper.BaseUriProperty, value); 573Uri uriToNavigate = BindUriHelper.GetUriToNavigate(navWin, d.GetValue(BaseUriHelper.BaseUriProperty) as Uri, (Uri)e.NewValue);