ResourceMap.GetValue 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
GetValue(String) |
返回由默认上下文中的资源标识符指定的资源最合适的候选项。 |
GetValue(String, ResourceContext) |
返回由提供上下文的资源标识符指定的资源的最合适的候选项。 |
GetValue(String)
返回由默认上下文中的资源标识符指定的资源最合适的候选项。
public:
virtual ResourceCandidate ^ GetValue(Platform::String ^ resource) = GetValue;
/// [Windows.Foundation.Metadata.Overload("GetValue")]
ResourceCandidate GetValue(winrt::hstring const& resource);
[Windows.Foundation.Metadata.Overload("GetValue")]
public ResourceCandidate GetValue(string resource);
function getValue(resource)
Public Function GetValue (resource As String) As ResourceCandidate
参数
- resource
-
String
Platform::String
winrt::hstring
指定为名称或引用的资源标识符。 有关详细信息,请参阅 ResourceMap 类的备注。
返回
ResourceCandidate,用于描述最合适的候选项。
- 属性
适用于
GetValue(String, ResourceContext)
返回由提供上下文的资源标识符指定的资源的最合适的候选项。
public:
virtual ResourceCandidate ^ GetValue(Platform::String ^ resource, ResourceContext ^ context) = GetValue;
/// [Windows.Foundation.Metadata.Overload("GetValueWithContext")]
ResourceCandidate GetValue(winrt::hstring const& resource, ResourceContext const& context);
[Windows.Foundation.Metadata.Overload("GetValueWithContext")]
public ResourceCandidate GetValue(string resource, ResourceContext context);
function getValue(resource, context)
Public Function GetValue (resource As String, context As ResourceContext) As ResourceCandidate
参数
- resource
-
String
Platform::String
winrt::hstring
指定为名称或引用的资源。 有关详细信息,请参阅 ResourceMap 类的备注。
- context
- ResourceContext
要为其选择最合适的候选项的上下文。
返回
ResourceCandidate,用于描述最合适的候选项。
- 属性
注解
某些资源根据视图的显示比例加载,并且应用内的不同视图可能会在具有不同比例的不同设备上显示。 刻度是按视图特征。
由于 GetValue 方法选择与运行时上下文相关的指定资源的最佳候选项,并且由于 ResourceContext 的规模限定符取决于关联的视图,因此应始终使用从使用该资源的视图中获取的 ResourceContext 对象调用 GetValue。