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.
21 lines
444 B
21 lines
444 B
using MangaMap.Views;
|
|
namespace MangaMap;
|
|
|
|
public partial class NewContent1 : ContentView
|
|
{
|
|
public NewContent1()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
void ImageButton_Clicked(System.Object sender, System.EventArgs e)
|
|
{
|
|
Navigation.PushAsync(new homePage());
|
|
//ShellContent(new homePage());
|
|
}
|
|
|
|
void SettingButton_Clicked(object sender, System.EventArgs e)
|
|
{
|
|
Navigation.PushAsync(new settingsPage());
|
|
}
|
|
} |