demo-xf-app-1a/MobileApp1/Views/HomePage.xaml.cs

25 lines
552 B
C#
Raw Normal View History

2021-08-03 16:43:16 +00:00
using System;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace MobileApp1.Views
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class HomePage : ContentPage
{
public HomePage()
{
InitializeComponent();
}
private async void button1_Clicked(object sender, EventArgs e)
{
await Task.Run(() =>
{
ContentPageHelper.SetDetailPage(this, typeof(MyStuffPage));
2021-08-03 16:43:16 +00:00
});
}
}
}