WeatherView.xaml.cs 317 B

123456789101112131415
  1. using Xamarin.Forms;
  2. namespace MyWeather.View
  3. {
  4. public partial class WeatherView : ContentPage
  5. {
  6. public WeatherView()
  7. {
  8. InitializeComponent();
  9. if (Device.OS == TargetPlatform.iOS)
  10. Icon = new FileImageSource { File = "tab1.png" };
  11. }
  12. }
  13. }