0

这是我的示例代码,其中包含一个数据网格,其中需要根据数据网格中更改的状态计算两个组合框列(状态和当前状态)

<Window.Resources>
    <staticData:StatusList x:Key="StatusList"/>
</Window.Resources>

<Grid>
    <my:DataGrid x:Name="dgData" AutoGenerateColumns="False" Margin="0,-6,0,6">
        <my:DataGrid.Columns>
            <my:DataGridTextColumn Binding="{Binding Subject}" Header="Subject" Width="*"/>
            <my:DataGridTemplateColumn Header="Status" Width="100">
                <my:DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <TextBlock Text="{Binding Status}"/>
                    </DataTemplate>
                </my:DataGridTemplateColumn.CellTemplate>

                <my:DataGridTemplateColumn.CellEditingTemplate>
                    <DataTemplate>
                        <ComboBox Height="22" 
                                  ItemsSource="{StaticResource StatusList}"
                                  SelectedItem="{Binding Status}"/>
                    </DataTemplate>
                </my:DataGridTemplateColumn.CellEditingTemplate>

            </my:DataGridTemplateColumn>
            <my:DataGridTextColumn Binding="{Binding RaisedBy}" Header="Raised By" Width="100"/>
            <my:DataGridTemplateColumn Header="PresentStatus" Width="100">
                <my:DataGridTemplateColumn.CellEditingTemplate>
                    <DataTemplate>
                        <ComboBox Height="22" 
                                  ItemsSource="{StaticResource StatusList}"
                                  SelectedItem="{Binding Status}"/>
                    </DataTemplate>
                </my:DataGridTemplateColumn.CellEditingTemplate>
            </my:DataGridTemplateColumn>
        </my:DataGrid.Columns>
    </my:DataGrid>
</Grid>`

C# 代码

public class StatusList : List<string>
    {
        public StatusList()
        {
            this.Add("Assigned");
            this.Add("Closed");
            this.Add("In Progress");
            this.Add("Open");
            this.Add("Resolved");
        }
    }

所以最后我需要在保存数据网格数据时计算状态。如果多次选择状态值(即相似值),则它应作为单个计数返回。For example, suppose 3 comboboxes are selected, 1 is Open, 2 is Resolved and 3 is Open, then count should be 2 because for open it should count as single value (or count) when multiple times same value selected.

编辑:在这里我尝试了代码,因为组合框状态是可编辑的,因此如果更改值和重复值应计为一个值,但我不确定。

bool isDuplicate;
int count;
for (int nbRow = 0; nbRow < dgData.Rows.Count; nbRow++)
{
    for (int nbRowCompare = nbRow; nbRowCompare < dgData.Rows.Count; nbRowCompare++)
    {
        isDuplicate = true;
        for (int nbCol = 0; nbCol < dgData.Rows[nbRow].Cells.Count; nbCol++)
        {
            if (dgData[nbCol, nbRow].Value != dgData­[nbCol, nbRowCompare])
            {
                isDuplicate = false;
                count++;
                break;     //Exit for each column if they are not duplicate
            }
        }

        if (isDuplicate)
        {
            //Do something
            count++;
        }
    }
}

在这里,我尝试了代码,因为组合框状态是可编辑的,因此如果更改值和重复值应计为一个值,但我不确定,请以这种方式帮助我

bool isDuplicate; int count; for(int nbRow = 0; nbRow < dgData.Rows.Count; nbRow++){for(int nbRowCompare = nbRow; nbRowCompare < dgData.Rows.Count; nbRowCompare++){isDuplicate = true; for(int nbCol = 0; nbCol < dgData.Rows[nbRow].Cells.Count; nbCol++) {if(dgData[nbCol, nbRow].Value != dgData­[nbCol, nbRowCompare]){isDuplicate = false; count++;break; //Exit for each column if they are not duplicate }}if(isDuplicate){//Do something count++;}}}

4

1 回答 1

0

如果我正确理解您的问题,您需要计算StatusDataGrid 中显示的各个行使用的不同值的数量。

您的 DataGrid 可能正在显示一个ObservableCollection(或一些其他集合)对象,表的每一行都有一个对象。(您的代码示例中没有显示任何值ItemsSource,但我假设有一个。)如果调用此列表items,并且您有using System.Linq;,您可以使用以下方法获取不同状态的列表:

List<string> distinctStatuses = items.Select(item => item.Status)
                                     .Distinct()
                                     .ToList();

如果您只想要计数,您可以进一步简化:

int distinctStatusCount = items.Select(item => item.Status).Distinct().Count();

我不太确定您的PresentStatus列,因为它与您的列绑定到同一列,Status因此它只会显示相同的数据。DataGrid 中的PresentStatus列也缺少它的CellTemplate.

于 2012-07-23T21:14:02.697 回答