22 строки
774 B
XML
22 строки
774 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ContentPage
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="Xamarin.Forms.Controls.Issue1766">
|
|
<ContentPage.Content>
|
|
<ListView ItemsSource="{Binding MyItems}" x:Name="MyListViewList">
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate>
|
|
<ViewCell>
|
|
<StackLayout Orientation="Horizontal">
|
|
<Label Text="{Binding Reference}"/>
|
|
<Button Clicked="OnButtonClicked"
|
|
Text=">>>"
|
|
IsVisible="{Binding ShowButton}"/>
|
|
</StackLayout>
|
|
</ViewCell>
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
</ListView>
|
|
</ContentPage.Content>
|
|
</ContentPage> |