Files
QControlKit/QControlKitXamDemo/QControlKitXamDemo/App.xaml.cs
T

27 lines
439 B
C#

using Xamarin.Forms;
namespace QControlKitXamDemo
{
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new NavigationPage(new MainPage());
}
protected override void OnStart()
{
}
protected override void OnSleep()
{
}
protected override void OnResume()
{
}
}
}