Last active
January 8, 2017 07:52
-
-
Save gurvinderbini/414d4e985c9ffd245c03610ba04e445f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<ListView x:Name="ListName" ItemsSource="{Binding Name}" | |
SeparatorVisibility="None" HasUnevenRows="True"> | |
<ListView.ItemTemplate> | |
<DataTemplate> | |
<ViewCell> | |
<StackLayout> | |
<Grid> | |
<Grid.ColumnDefinitions> | |
<ColumnDefinition Width="1*" /> | |
<ColumnDefinition Width="1*" /> | |
</Grid.ColumnDefinitions> | |
<Label Text="{Binding Name}"/> | |
<Button Text="Click Me" Command="{Binding ClickCommand}"/> | |
</Grid> | |
</StackLayut> | |
</ViewCell> | |
</DataTemplate> | |
</ListView.ItemTemplate> | |
</ListView> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment