Guest User

Untitled

a guest
Oct 16th, 2021
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. using Xamarin.Forms;
  2. using Xamarin.Forms.Xaml;
  3. using XSeek.ViewModels;
  4. namespace XSeek.Views
  5. {
  6.     [XamlCompilation(XamlCompilationOptions.Compile)]
  7.     public partial class Search : ContentPage
  8.     {
  9.         public Search()
  10.         {
  11.             InitializeComponent();
  12.             BindingContext = new SearchViewModel();
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment