List<string> ss;
public AddMenuPage()
{
InitializeComponent();
ss =new List<string>() { "Awesome!", "Great!", "Cool!", "Good!", "Not Bad!", "Meh!", "Awesome!", "Great!", "Cool!", "Good!", "Not Bad!", "Meh!" };
SelectionListView.ItemsSource = ss;
}
private void Button_Clicked(object sender, EventArgs e)
{
try
{
ss.Add("amit");
SelectionListView.ItemsSource = ss;
}
catch (Exception ex)
{
}
}