ResourceLoader.GetString(String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
針對使用ResourceLoader.GetForCurrentView 取得 ResourceLoader之檢視的預設ResourceCoNtext,傳回資源識別碼所指定的資源最適當的字串值。
適用于 UWP 的對等 WinUI 2 API:Microsoft.Windows.ApplicationModel.Resources.ResourceLoader.GetString (for WinUI 在Windows 應用程式 SDK中,請參閱Windows 應用程式 SDK命名空間) 。
public:
virtual Platform::String ^ GetString(Platform::String ^ resource) = GetString;
winrt::hstring GetString(winrt::hstring const& resource);
public string GetString(string resource);
function getString(resource)
Public Function GetString (resource As String) As String
參數
- resource
-
String
Platform::String
winrt::hstring
要解析之資源的資源識別碼。
注意
資源識別碼會被視為統一資源識別項 (URI) 片段,受限於統一資源識別項 (URI) 語意。 例如, getString (「Caption%20」) 會被視為 getString (「Caption 」) 。 請勿在資源識別碼中使用 「?」 或 「#」,因為它們會終止具名資源路徑。 例如,「Foo?3」 被視為 「Foo」。
傳回
預設 ResourceCoNtext指定資源的最適當字串值。
範例
請參閱 ResourceLoader中的範例。