initial commit
This commit is contained in:
22
Gallery.Share/Views/NewItemPage.xaml.cs
Normal file
22
Gallery.Share/Views/NewItemPage.xaml.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user