2
如何在XAML(xamarin表單)中使用資源文件,如<Label Text="MyApp.resouces.MyString" />
?使用XAML文件中的資源文件(Xamarin)
如何在XAML(xamarin表單)中使用資源文件,如<Label Text="MyApp.resouces.MyString" />
?使用XAML文件中的資源文件(Xamarin)
有一個很好的文章here涉及這一話題。它包括很多例子。
後您實現您的TranslateExtension你的代碼看起來就像這樣:
<Label x:Name="lblName" Text="{local:TranslateExtension MyString}" />
你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}"/>