32 lines
689 B
C#
32 lines
689 B
C#
using MyMobileApp.Models;
|
|
using MyMobileApp.ViewModels;
|
|
using MyMobileApp.Views;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Xaml;
|
|
|
|
namespace MyMobileApp.Views
|
|
{
|
|
public partial class ItemsPage : ContentPage
|
|
{
|
|
ItemsViewModel _viewModel;
|
|
|
|
public ItemsPage()
|
|
{
|
|
InitializeComponent();
|
|
|
|
BindingContext = _viewModel = new ItemsViewModel();
|
|
}
|
|
|
|
protected override void OnAppearing()
|
|
{
|
|
base.OnAppearing();
|
|
_viewModel.OnAppearing();
|
|
}
|
|
}
|
|
} |