You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ConsEco/Sources/IHM/App.xaml.cs

26 lines
590 B

using LinqToPgSQL;
using Model;
namespace IHM
{
public partial class App : Application
{
public Manager Manager { get; set; } = new Manager(new PersLinqToPgSQL());
public App()
{
InitializeComponent();
MainPage = new AppShell();
2 years ago
if(OperatingSystem.IsWindows())
{
MainPage = new UI_Windows.MainPage_Windows();
}
else if(OperatingSystem.IsAndroid() || OperatingSystem.IsIOS())
{
MainPage = new MainPage();
}
}
}
}