30 references to BaseUriProperty
PresentationCore (1)
Core\CSharp\System\Windows\Navigation\BaseUriHelper.cs (1)
601baseUri = doCurrent.GetValue(BaseUriProperty) as Uri;
PresentationFramework (29)
src\Framework\System\Windows\Controls\Frame.cs (2)
197return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 201SetValue(BaseUriHelper.BaseUriProperty, value);
src\Framework\System\Windows\Controls\Image.cs (2)
298return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 302SetValue(BaseUriHelper.BaseUriProperty, value);
src\Framework\System\Windows\Documents\DocumentReference.cs (2)
193get { return (Uri)GetValue(BaseUriHelper.BaseUriProperty); } 194set { SetValue(BaseUriHelper.BaseUriProperty, value); }
src\Framework\System\Windows\Documents\DocumentSequence.cs (2)
508get { return (Uri) GetValue(BaseUriHelper.BaseUriProperty); } 509set { SetValue(BaseUriHelper.BaseUriProperty, value); }
src\Framework\System\Windows\Documents\FixedDocument.cs (2)
201get { return (Uri) GetValue(BaseUriHelper.BaseUriProperty); } 202set { SetValue(BaseUriHelper.BaseUriProperty, value); }
src\Framework\System\Windows\Documents\FixedPage.cs (2)
364get { return (Uri) GetValue(BaseUriHelper.BaseUriProperty); } 365set { SetValue(BaseUriHelper.BaseUriProperty, value); }
src\Framework\System\Windows\Documents\Glyphs.cs (2)
101return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 105SetValue(BaseUriHelper.BaseUriProperty, value);
src\Framework\System\Windows\Documents\Hyperlink.cs (2)
802return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 806SetValue(BaseUriHelper.BaseUriProperty, value);
src\Framework\System\Windows\Documents\PageContent.cs (2)
334return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 338SetValue(BaseUriHelper.BaseUriProperty, value);
src\Framework\System\Windows\FrameworkTemplate.cs (1)
761if (dependencyProperty == System.Windows.Navigation.BaseUriHelper.BaseUriProperty)
src\Framework\System\Windows\Markup\BamlRecordReader.cs (1)
4534SetDependencyValue(doRoot, BaseUriHelper.BaseUriProperty, baseuri);
src\Framework\System\Windows\Markup\XamlReader.cs (3)
390(rootObject as DependencyObject).SetValue(BaseUriHelper.BaseUriProperty, parserContext.BaseUri); 879dObject.SetValue(BaseUriHelper.BaseUriProperty, parserContext.BaseUri); 1048dObject.SetValue(BaseUriHelper.BaseUriProperty, readerSettings.BaseUri);
src\Framework\System\Windows\Navigation\NavigationService.cs (3)
901curBaseUri = (Uri)(dobj.GetValue(BaseUriHelper.BaseUriProperty)); 910dobj.SetValue(BaseUriHelper.BaseUriProperty, baseUri); 3462Uri baseUri = pfBase.GetValue(BaseUriHelper.BaseUriProperty) as Uri;
src\Framework\System\Windows\Navigation\NavigationWindow.cs (3)
428return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 432SetValue(BaseUriHelper.BaseUriProperty, value); 616Uri uriToNavigate = BindUriHelper.GetUriToNavigate(navWin, d.GetValue(BaseUriHelper.BaseUriProperty) as Uri, (Uri)e.NewValue);