Last active
October 9, 2017 10:36
-
-
Save mogwai/301893f0358f57b5bde8abf12eef2477 to your computer and use it in GitHub Desktop.
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
<?xml version="1.0" encoding="UTF-8"?> | |
<ContentView xmlns="http://xamarin.com/schemas/2014/forms" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
x:Class="Hum.Views.EventListItemView"> | |
<Label Text="{Binding Title}" /> | |
</ViewCell> |
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
using Xamarin.Forms.Internals; | |
using Xamarin.Forms; | |
public class MyContentView : ContentView { | |
[Preserve] | |
public string Title {get;set;} | |
public MyContentView(){ | |
BindingContext = this; | |
Title = "Hello World!"; | |
InitializeComponent(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment