25 lines
533 B
C#
25 lines
533 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
using Xamarin.Forms;
|
|||
|
using Xamarin.Forms.Xaml;
|
|||
|
|
|||
|
namespace MyMobileApp
|
|||
|
{
|
|||
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|||
|
public partial class SignIn : ContentPage
|
|||
|
{
|
|||
|
public SignIn()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
|
|||
|
private async void Button_Clicked(object sender, EventArgs e)
|
|||
|
{
|
|||
|
await Navigation.PushAsync(new SecondPage());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|