15 lines
324 B
C#
15 lines
324 B
C#
using MyMobileApp.ViewModels;
|
|
using System.ComponentModel;
|
|
using Xamarin.Forms;
|
|
|
|
namespace MyMobileApp.Views
|
|
{
|
|
public partial class ItemDetailPage : ContentPage
|
|
{
|
|
public ItemDetailPage()
|
|
{
|
|
InitializeComponent();
|
|
BindingContext = new ItemDetailViewModel();
|
|
}
|
|
}
|
|
} |