Мой код ниже отображает вид списка, когда нажимается кнопка «Проиграть ваш заказ», срабатывает функция ButtonPressed (отправитель объекта, EventArgs e). Как я могу захватить весь список с помощью функции ButtonPressed ...
Я пробовал что-то вроде
void ButtonPressed(object sender, EventArgs e)
{
var listView = (ListView)sender;//but this did not work
}
<ContentPage.Content>
<StackLayout>
<ListView ItemsSource="{Binding CompletedList}" HasUnevenRows="True" SeparatorVisibility="None">
<ListView.Header>
<Button Text="Please place your order" Clicked="ButtonPressed"/>
</ListView.Header>
<ListView.Footer>
<Label x:Name="Items" HorizontalTextAlignment="End" VerticalTextAlignment="Start" Margin="20,20" FontAttributes="Bold"/>
</ListView.Footer>
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Grid Padding="10" RowSpacing="10" ColumnSpacing="10">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Label Grid.Column="0" Text="{Binding I_D}" VerticalOptions="End" IsVisible="False"/>
<Label Grid.Column="2" Grid.Row="1" Text="{Binding NameOfProduct}" VerticalOptions="End"/>
</Grid>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackLayout>
</ContentPage.Content>
</ContentPage>