BaseUriHelper.GetBaseUri(DependencyObject) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取指定的 UIElement 的 BaseUri
的值。
public:
static Uri ^ GetBaseUri(System::Windows::DependencyObject ^ element);
[System.Security.SecurityCritical]
public static Uri GetBaseUri (System.Windows.DependencyObject element);
public static Uri GetBaseUri (System.Windows.DependencyObject element);
[<System.Security.SecurityCritical>]
static member GetBaseUri : System.Windows.DependencyObject -> Uri
static member GetBaseUri : System.Windows.DependencyObject -> Uri
Public Shared Function GetBaseUri (element As DependencyObject) As Uri
参数
- element
- DependencyObject
要从中读取属性值的元素。
返回
给定元素的基本 URI。
- 属性
例外
element
为 null
。
注解
如果属性已实现,则使用此方法获取 IUriContext.BaseUri 该属性;如果属性是在元素上设置的 BaseUri ,则为附加属性。 GetBaseUri将遍历要搜索最近的BaseUri (IUriContext或附加属性的父元素element
) 。