Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace FinalFantasy.Droid
- {
- [XamlCompilation(XamlCompilationOptions.Compile)]
- public partial class Page1 : ContentPage
- {
- public ObservableCollection<String> products = new ObservableCollection<string>{
- "Вишня",
- "Яблоко",
- "Мясо курицы",
- "Капуста" };
- public Page1()
- {
- BindingContext = this;
- InitializeComponent();
- productslist.ItemsSource = products;
- }
- private void showpopup(object sender, EventArgs e)
- {
- PopupNavigation.Instance.PushAsync(new View1());
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement