Ooui-tws-port/Samples/ListView/RefreshListView.xaml.cs

17 lines
313 B
C#
Raw Normal View History

using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace Samples
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class RefreshListView : ContentPage
{
public RefreshListView ()
{
InitializeComponent ();
BindingContext = new RefreshListViewModel ();
}
}
}