Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. using WeatherBotv4App.ViewModels;
  2.  
  3. using Xamarin.Forms;
  4. using Xamarin.Forms.Xaml;
  5.  
  6. namespace WeatherBotv4App.Views
  7. {
  8. [XamlCompilation(XamlCompilationOptions.Compile)]
  9. public partial class BotView : ContentPage
  10. {
  11. public BotView()
  12. {
  13. InitializeComponent();
  14. BindingContext = new ConversationViewModel();
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement