Skip to content

Instantly share code, notes, and snippets.

@susairajs
Created January 18, 2020 17:54
using Xamarin.Forms;
namespace ToolBar
{
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
}
private void ToolbarItem_Clicked(object sender, EventArgs e)
{
MainLable.Text = "Your Selected Item Clicked";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment