Skip to content

Instantly share code, notes, and snippets.

@gurvinderbini
Last active January 8, 2017 07:52
Show Gist options
  • Save gurvinderbini/414d4e985c9ffd245c03610ba04e445f to your computer and use it in GitHub Desktop.
Save gurvinderbini/414d4e985c9ffd245c03610ba04e445f to your computer and use it in GitHub Desktop.
<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