mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
添加xamarinFormApp例子,安卓,iOS,WPF
This commit is contained in:
19
Examples/xamarinFormApp/xamarinFormApp/AppShell.xaml.cs
Normal file
19
Examples/xamarinFormApp/xamarinFormApp/AppShell.xaml.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Xamarin.Forms;
|
||||
using xamarinFormApp.ViewModels;
|
||||
using xamarinFormApp.Views;
|
||||
|
||||
namespace xamarinFormApp
|
||||
{
|
||||
public partial class AppShell : Xamarin.Forms.Shell
|
||||
{
|
||||
public AppShell()
|
||||
{
|
||||
InitializeComponent();
|
||||
Routing.RegisterRoute(nameof(ItemDetailPage), typeof(ItemDetailPage));
|
||||
Routing.RegisterRoute(nameof(NewItemPage), typeof(NewItemPage));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user