30 references to BaseUriProperty
PresentationCore (1)
System\Windows\Navigation\BaseUriHelper.cs (1)
551baseUri = doCurrent.GetValue(BaseUriProperty) as Uri;
PresentationFramework (29)
System\Windows\Controls\Frame.cs (2)
190return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 194SetValue(BaseUriHelper.BaseUriProperty, value);
System\Windows\Controls\Image.cs (2)
293return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 297SetValue(BaseUriHelper.BaseUriProperty, value);
System\Windows\Documents\DocumentReference.cs (2)
187get { return (Uri)GetValue(BaseUriHelper.BaseUriProperty); } 188set { SetValue(BaseUriHelper.BaseUriProperty, value); }
System\Windows\Documents\DocumentSequence.cs (2)
482get { return (Uri) GetValue(BaseUriHelper.BaseUriProperty); } 483set { SetValue(BaseUriHelper.BaseUriProperty, value); }
System\Windows\Documents\FixedDocument.cs (2)
189get { return (Uri) GetValue(BaseUriHelper.BaseUriProperty); } 190set { SetValue(BaseUriHelper.BaseUriProperty, value); }
System\Windows\Documents\FixedPage.cs (2)
357get { return (Uri) GetValue(BaseUriHelper.BaseUriProperty); } 358set { SetValue(BaseUriHelper.BaseUriProperty, value); }
System\Windows\Documents\Glyphs.cs (2)
96return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 100SetValue(BaseUriHelper.BaseUriProperty, value);
System\Windows\Documents\Hyperlink.cs (2)
763return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 767SetValue(BaseUriHelper.BaseUriProperty, value);
System\Windows\Documents\PageContent.cs (2)
322return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 326SetValue(BaseUriHelper.BaseUriProperty, value);
System\Windows\FrameworkTemplate.cs (1)
757if (dependencyProperty == System.Windows.Navigation.BaseUriHelper.BaseUriProperty)
System\Windows\Markup\BamlRecordReader.cs (1)
4488SetDependencyValue(doRoot, BaseUriHelper.BaseUriProperty, baseuri);
System\Windows\Markup\XamlReader.cs (3)
486(rootObject as DependencyObject).SetValue(BaseUriHelper.BaseUriProperty, parserContext.BaseUri); 957dObject.SetValue(BaseUriHelper.BaseUriProperty, parserContext.BaseUri); 1105dObject.SetValue(BaseUriHelper.BaseUriProperty, readerSettings.BaseUri);
System\Windows\Navigation\NavigationService.cs (3)
773curBaseUri = (Uri)(dobj.GetValue(BaseUriHelper.BaseUriProperty)); 782dobj.SetValue(BaseUriHelper.BaseUriProperty, baseUri); 3224Uri baseUri = pfBase.GetValue(BaseUriHelper.BaseUriProperty) as Uri;
System\Windows\Navigation\NavigationWindow.cs (3)
408return (Uri)GetValue(BaseUriHelper.BaseUriProperty); 412SetValue(BaseUriHelper.BaseUriProperty, value); 589Uri uriToNavigate = BindUriHelper.GetUriToNavigate(navWin, d.GetValue(BaseUriHelper.BaseUriProperty) as Uri, (Uri)e.NewValue);