MyMobileApp/SecondPage.xaml.cs

25 lines
456 B
C#
Raw Normal View History

2025-03-13 11:30:05 +03:00
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 SecondPage : ContentPage
{
public SecondPage ()
{
InitializeComponent ();
}
private void Button_Clicked(object sender, EventArgs e)
{
}
}
}