通过DisplayActionSheet

时间:2019-03-11 11:41:15

标签: c# android xaml listview xamarin.android

我正在Visual Studio 2017 Xamarin.forms上创建ListView应用程序,该应用程序向我显示了我的欠款列表。我已经从“ Dispalying Pop-ups” Microsoft Xamarin网站添加了DisplayActionSheet。如何删除通过DisplayActionSheet轻触的ListView项?

我的DisplayActionSheet外观如下:

private async void DebtsList_ItemTapped(object sender, ItemTappedEventArgs e)
    {
        var action = await DisplayActionSheet("Details", "Close", null, "Cash", "Delete","");
        Debug.WriteLine("Action: " + action);
    }

这是我的ListView,它显示了我的所有债务:

<ListView x:Name="DebtsList"
              ItemsSource="{Binding DebtEntries}" 
              CachingStrategy="RecycleElement" 
              Grid.Row="7" 
              Grid.ColumnSpan="3" 
              Grid.RowSpan="15"                  
              HasUnevenRows="True"
              ItemTapped="DebtsList_ItemTapped">
    <ListView.Header>
      <Grid BackgroundColor="White" Margin="7">
        <Grid.ColumnDefinitions>
          <ColumnDefinition Width="*"/>
          <ColumnDefinition Width="*"/>
          <ColumnDefinition Width="*"/>
        </Grid.ColumnDefinitions>

        <Grid.RowDefinitions>
          <RowDefinition Height="auto"/>
        </Grid.RowDefinitions>
        <Label Text="Name" FontSize="11" FontAttributes="Bold" TextColor="#4a4a4a" Grid.Row="0" Grid.Column="0" />
        <Label Text="Usage" FontSize="11" FontAttributes="Bold" TextColor="#4a4a4a" Grid.Row="0" Grid.Column="1" />
        <Label Text="Value" FontSize="11" FontAttributes="Bold" TextColor="#4a4a4a" Grid.Row="0" Grid.Column="2" HorizontalOptions="End"/>
      </Grid>
    </ListView.Header>
    <ListView.ItemTemplate>
      <DataTemplate>
        <ViewCell>
          <Grid BackgroundColor="White" Margin="7">
            <Grid.RowDefinitions>
              <RowDefinition Height="*"/>
              <RowDefinition Height="*"/>
            </Grid.RowDefinitions>
            <Grid.ColumnDefinitions>
              <ColumnDefinition Width="*"/>
              <ColumnDefinition Width="*"/>
              <ColumnDefinition Width="*"/>
            </Grid.ColumnDefinitions>
            <Label Text="{Binding Name}" 
                     Grid.Row="0"
                     Grid.Column="0"
                     FontSize="10"
                     TextColor="#4a4a4a"/>
            <Label Text="{Binding Usage}" 
                     Grid.Row="0" 
                     Grid.Column="1"
                     FontSize="10"
                     TextColor="#4a4a4a"/>
            <Label Text="{Binding Value}"
                     Grid.Row="0"
                     Grid.Column="2"
                     FontSize="10"
                     TextColor="#F33E3E"                         
                     FontAttributes="Bold"
                     HorizontalOptions="End"/>
            <Label Text="{Binding CreationDate}" 
                     Grid.Row="1" 
                     Grid.Column="0"
                     FontSize="10"
                     TextColor="#4a4a4a"/>
          </Grid>
        </ViewCell>
      </DataTemplate>
    </ListView.ItemTemplate>
  </ListView>

0 个答案:

没有答案