2
XAML(xamarinフォーム)のリソースファイルを<Label Text="MyApp.resouces.MyString" />
のように使用するにはどうすればよいですか?XAMLファイル(Xamarin)のリソースファイルを使用
XAML(xamarinフォーム)のリソースファイルを<Label Text="MyApp.resouces.MyString" />
のように使用するにはどうすればよいですか?XAMLファイル(Xamarin)のリソースファイルを使用
このトピックをカバーする素晴らしい記事hereがあります。それは多くの例を含んでいます。
<Label x:Name="lblName" Text="{local:TranslateExtension MyString}" />
:あなたはあなたのコードは次のようになりますあなたのTranslateExtensionを実装した後
あなたApp.axmlファイル:
<Application xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Master.App">
<Application.Resources>
<!-- Application resource dictionary -->
<ResourceDictionary>
<x:String x:Key="AppName">Name of app</x:String>
</ResourceDictionary>
</Application.Resources>
</Application>
そして、あなたのラベル:
<Label Text="{StaticResource AppName}"/>