2017-12-02 91 views

回答

2

有一個很好的文章here涉及這一話題。它包括很多例子。

後您實現您的TranslateExtension你的代碼看起來就像這樣:

<Label x:Name="lblName" Text="{local:TranslateExtension MyString}" /> 
2

你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}"/>