You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
629 B
14 lines
629 B
namespace FlyoutTabSearch.Pages;
|
|
|
|
public partial class AstronomicalBodiesPage : ContentPage
|
|
{
|
|
public AstronomicalBodiesPage()
|
|
{
|
|
InitializeComponent();
|
|
|
|
btnComet.Clicked += async (s, e) => await Shell.Current.GoToAsync("astronomicalbodydetails?astroName=comet");
|
|
btnEarth.Clicked += async (s, e) => await Shell.Current.GoToAsync("astronomicalbodydetails?astroName=earth");
|
|
btnMoon.Clicked += async (s, e) => await Shell.Current.GoToAsync("astronomicalbodydetails?astroName=moon");
|
|
btnSun.Clicked += async (s, e) => await Shell.Current.GoToAsync("astronomicalbodydetails?astroName=sun");
|
|
}
|
|
} |