mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-05-02 23:22:51 +08:00
15 lines
330 B
C#
15 lines
330 B
C#
using System.ComponentModel;
|
|
using Xamarin.Forms;
|
|
using xamarinFormApp.ViewModels;
|
|
|
|
namespace xamarinFormApp.Views
|
|
{
|
|
public partial class ItemDetailPage : ContentPage
|
|
{
|
|
public ItemDetailPage()
|
|
{
|
|
InitializeComponent();
|
|
BindingContext = new ItemDetailViewModel();
|
|
}
|
|
}
|
|
} |