30 references to BaseUriProperty
PresentationCore (1)
System\Windows\Navigation\BaseUriHelper.cs (1)
537baseUri = doCurrent.GetValue(BaseUriProperty) as Uri;
PresentationFramework (29)
System\Windows\Controls\Frame.cs (2)
177return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 181SetValue(BaseUriHelper.BaseUriProperty, value);
System\Windows\Controls\Image.cs (2)
284return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 288SetValue(BaseUriHelper.BaseUriProperty, value);
System\Windows\Documents\DocumentReference.cs (2)
172get { return (Uri)GetValue(BaseUriHelper.BaseUriProperty); } 173set { SetValue(BaseUriHelper.BaseUriProperty, value); }
System\Windows\Documents\DocumentSequence.cs (2)
465get { return (Uri) GetValue(BaseUriHelper.BaseUriProperty); } 466set { SetValue(BaseUriHelper.BaseUriProperty, value); }
System\Windows\Documents\FixedDocument.cs (2)
177get { return (Uri) GetValue(BaseUriHelper.BaseUriProperty); } 178set { SetValue(BaseUriHelper.BaseUriProperty, value); }
System\Windows\Documents\FixedPage.cs (2)
350get { return (Uri) GetValue(BaseUriHelper.BaseUriProperty); } 351set { SetValue(BaseUriHelper.BaseUriProperty, value); }
System\Windows\Documents\Glyphs.cs (2)
82return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 86SetValue(BaseUriHelper.BaseUriProperty, value);
System\Windows\Documents\Hyperlink.cs (2)
757return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 761SetValue(BaseUriHelper.BaseUriProperty, value);
System\Windows\Documents\PageContent.cs (2)
304return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 308SetValue(BaseUriHelper.BaseUriProperty, value);
System\Windows\FrameworkTemplate.cs (1)
744if (dependencyProperty == System.Windows.Navigation.BaseUriHelper.BaseUriProperty)
System\Windows\Markup\BamlRecordReader.cs (1)
4466SetDependencyValue(doRoot, BaseUriHelper.BaseUriProperty, baseuri);
System\Windows\Markup\XamlReader.cs (3)
473(rootObject as DependencyObject).SetValue(BaseUriHelper.BaseUriProperty, parserContext.BaseUri); 951dObject.SetValue(BaseUriHelper.BaseUriProperty, parserContext.BaseUri); 1097dObject?.SetValue(BaseUriHelper.BaseUriProperty, readerSettings.BaseUri);
System\Windows\Navigation\NavigationService.cs (3)
743curBaseUri = (Uri)(dobj.GetValue(BaseUriHelper.BaseUriProperty)); 752dobj.SetValue(BaseUriHelper.BaseUriProperty, baseUri); 3161Uri baseUri = pfBase.GetValue(BaseUriHelper.BaseUriProperty) as Uri;
System\Windows\Navigation\NavigationWindow.cs (3)
391return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 395SetValue(BaseUriHelper.BaseUriProperty, value); 569Uri uriToNavigate = BindUriHelper.GetUriToNavigate(navWin, d.GetValue(BaseUriHelper.BaseUriProperty) as Uri, (Uri)e.NewValue);