Created
October 3, 2019 17:09
-
-
Save Adam--/3b6d3d8c258d59f39d06a4ee35f9ae17 to your computer and use it in GitHub Desktop.
Create view model and set binding context in view's XAML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- From https://github.com/jamesmontemagno/app-pretty-weather/blob/master/PrettyWeather/PrettyWeather/MainPage.xaml --> | |
<?xml version="1.0" encoding="utf-8" ?> | |
<ContentPage | |
x:Class="PrettyWeather.MainPage" | |
xmlns="http://xamarin.com/schemas/2014/forms" | |
xmlns:pancake="clr-namespace:Xamarin.Forms.PancakeView;assembly=Xamarin.Forms.PancakeView" | |
xmlns:converters="clr-namespace:PrettyWeather.Converters" | |
xmlns:viewmodel="clr-namespace:PrettyWeather.ViewModel" | |
xmlns:model="clr-namespace:PrettyWeather.Model" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
xmlns:d="http://xamarin.com/schemas/2014/forms/design" | |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
x:Name="WeatherPage" | |
mc:Ignorable="d"> | |
<ContentPage.BindingContext> | |
<viewmodel:WeatherViewModel Temp="61"/> | |
</ContentPage.BindingContext> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment