sharee.bike-App/SharedGui/View/HintForRefreshingPageView.xaml.cs

24 lines
471 B
C#
Raw Normal View History

2023-02-22 14:03:35 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-04-09 12:53:23 +02:00
using SharedGui.ViewModel;
2023-02-22 14:03:35 +01:00
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
2024-04-09 12:53:23 +02:00
namespace SharedGui.View
2023-02-22 14:03:35 +01:00
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class HintForRefreshingPageView : ContentView
{
public HintForRefreshingPageView()
{
InitializeComponent();
this.BindingContext = new NotConnectedToNetViewModel();
}
}
}