如何对“列表”框中的项目求和

本文关键字:项目 求和 列表 | 更新日期: 2023-09-27 18:14:44

我有两个ListBox, SourceDestination。目标ListBox有用户选择的Items

如何对目标ListBox中的项目进行求和?

目的ListBox有两种数据类型String (Description)和decimal (Cost)。我只想总结一下成本。下面是XAML代码

<ListBox Height="237" HorizontalAlignment="Left" Margin="44,191,0,0" Name="lstDestination" VerticalAlignment="Top" Width="264" Grid.ColumnSpan="2" ItemsSource="{Binding Source={StaticResource myItemList}}">
    <ListBox.ItemTemplate>
        <DataTemplate>
            <StackPanel Orientation="Vertical">
                <DockPanel >
                   <TextBlock FontWeight="Bold" Text="Item:"  DockPanel.Dock="Left" Margin="5,0,10,0"/>
                   <TextBlock Text="{Binding Path=Resource}" Foreground="Green" FontWeight="Bold" />
                   <TextBlock FontWeight="Bold" Text="Cost:"  DockPanel.Dock="Left" Margin="5,0,10,0"/>
                  <TextBlock Text="{Binding Path=Cost}" FontWeight="Bold" />
                </DockPanel>
            </StackPanel>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>

这是我试图总结的代码:

private decimal SumDLstBox()
{
    decimal totalCost;
    foreach (var i in lstDestination.SelectedItems)
    {
        totalCost+=i.Cost; //Error is thrown here             
    }
    return totalCost;
}
//Data Source to List Box Source
 var items = from r in dc.IResources select r;
        lstSource.ItemsSource = items;

用户选择了Items s/他需要的,我的挑战是获得所选项目的总数(已移动到ListBox目的地)

如何对“列表”框中的项目求和

要对绑定的数据进行操作,应该将其强制转换为正在处理的数据类型的列表。例如。

private decimal SumDLstBox()
{
    return lstDestination.SelectedItems.Cast<Foo>().Sum(f => f.Cost);
}

其中Foo是绑定到控件的List的数据类型

您的.cs -file将知道属性lstDestination。可以使用foreach循环遍历lstDestination中的所有元素。在相同的循环中,您可以将成本加起来。

在我看来,你不迭代lstDestination。但通过lstDestination。项目