Skip to content
Permalink
add6e4d428
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
40 lines (34 sloc) 976 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace Local
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class ImageView : ContentPage
{
public ImageView()
{
InitializeComponent();
}
private async void NoteImageButton(object sender, EventArgs e)
{
await Navigation.PushAsync(new MainPage());
}
private async void CameraImageButton(object sender, EventArgs e)
{
await Navigation.PushAsync(new Page3());
}
private async void AboutTheCreator(object sender, EventArgs e)
{
await Navigation.PushAsync(new AboutTheAuthor());
}
private async void ButtonView(object sender, EventArgs e)
{
await Navigation.PushAsync(new TestPage());
}
}
}