2023-02-22 14:03:35 +01:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.ComponentModel;
|
|
|
|
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.Essentials;
|
|
|
|
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 NotConnectedToNetView : ContentView, INotifyPropertyChanged
|
|
|
|
{
|
|
|
|
public NotConnectedToNetView()
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
this.BindingContext = new NotConnectedToNetViewModel();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|