共用方式為


CustomXamlResourceLoader.GetResource(String, String, String, String) 方法

定義

在衍生類別中覆寫時,指定這個 CustomXamlResourceLoader的資源查閱邏輯。 給定資源識別碼和預期結果的一些類型資訊,會傳回要求的資源。

protected:
 virtual Platform::Object ^ GetResource(Platform::String ^ resourceId, Platform::String ^ objectType, Platform::String ^ propertyName, Platform::String ^ propertyType) = GetResource;
IInspectable GetResource(winrt::hstring const& resourceId, winrt::hstring const& objectType, winrt::hstring const& propertyName, winrt::hstring const& propertyType);
protected virtual object GetResource(string resourceId, string objectType, string propertyName, string propertyType);
function getResource(resourceId, objectType, propertyName, propertyType)
Protected Overridable Function GetResource (resourceId As String, objectType As String, propertyName As String, propertyType As String) As Object

參數

resourceId
String

Platform::String

winrt::hstring

要取得之資源的字串格式索引鍵。

objectType
String

Platform::String

winrt::hstring

資源的預期類型。

propertyName
String

Platform::String

winrt::hstring

做為自訂資源查閱邏輯中索引鍵的屬性名稱。

propertyType
String

Platform::String

winrt::hstring

做為索引鍵的屬性類型,其類型表示為字串。

傳回

Object

Platform::Object

IInspectable

擷取的資源。

備註

每當在標記中遇到{CustomResource} 標記延伸用法時,Windows 執行階段 XAML 剖析器就會呼叫這個方法。 resourceId來自預設索引鍵標記延伸引數至{CustomResource} 標記延伸,而其他輸入參數則來自內容,例如套用使用量的屬性。

適用於