23 lines
		
	
	
		
			445 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			445 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.ComponentModel;
 | 
						|
using Xamarin.Forms;
 | 
						|
using Xamarin.Forms.Xaml;
 | 
						|
 | 
						|
using Gallery.Models;
 | 
						|
using Gallery.ViewModels;
 | 
						|
 | 
						|
namespace Gallery.Views
 | 
						|
{
 | 
						|
    public partial class NewItemPage : ContentPage
 | 
						|
    {
 | 
						|
        public Item Item { get; set; }
 | 
						|
 | 
						|
        public NewItemPage()
 | 
						|
        {
 | 
						|
            InitializeComponent();
 | 
						|
            BindingContext = new NewItemViewModel();
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |