MyMobileApp/Views/NewItemPage.xaml.cs

21 lines
455 B
C#
Raw Permalink Normal View History

2025-03-13 11:30:05 +03:00
using MyMobileApp.Models;
using MyMobileApp.ViewModels;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace MyMobileApp.Views
{
public partial class NewItemPage : ContentPage
{
public Item Item { get; set; }
public NewItemPage()
{
InitializeComponent();
BindingContext = new NewItemViewModel();
}
}
}