using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ShareeSharedGuiLib.ViewModel; using Xamarin.Forms; using Xamarin.Forms.Xaml; namespace ShareeSharedGuiLib.View { [XamlCompilation(XamlCompilationOptions.Compile)] public partial class HintForRefreshingPageView : ContentView { public HintForRefreshingPageView() { InitializeComponent(); this.BindingContext = new NotConnectedToNetViewModel(); } } }