Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created February 19, 2019 11:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icebeam7/8f229adc9df233907803e32ba0d481b9 to your computer and use it in GitHub Desktop.
Save icebeam7/8f229adc9df233907803e32ba0d481b9 to your computer and use it in GitHub Desktop.
WeatherBotv4App - BotView.xaml.cs
using WeatherBotv4App.ViewModels;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace WeatherBotv4App.Views
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class BotView : ContentPage
{
public BotView()
{
InitializeComponent();
BindingContext = new ConversationViewModel();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment