使用日期过滤datagridview

时间:2012-03-13 13:27:35

标签: c# winforms datagridview datetimepicker

我正在尝试使用2 datetimepickers - startDate和endDate过滤datagridview中的截止日期列。

datagridview是TaskTable2, datetimepicker1是startSchedule, datetimepicker2是endSchedule和 datagridview中的截止日期是deadlineRow

到目前为止,我已经获得了以下代码,该代码成功地使行不可见,这些代码不在选定的开始日期和结束日期之间。

private void scheduleButton_Click(object sender, EventArgs e)
    {

        DateTime startSchedule = startDate.Value.Date;
        DateTime endSchedule = endDate.Value.Date;

        if (startSchedule <= endSchedule)// runs foreach loop if startdate and enddate are valid
        {
            foreach (DataGridViewRow dr in TaskTable2.Rows)// loops through rows of datagridview
            {
                string deadline = dr.Cells["Deadline"].Value.ToString(); // gets deadline values
                DateTime deadlineRow = Convert.ToDateTime(deadline); // converts deadline string to datetime and stores in deadlineRow variable

                if (startSchedule <= deadlineRow && deadlineRow <= endSchedule) // filters deadlines that are => startDate and <= endDate
                {
                    dr.Visible = true; // display filtered rows here.
                }
                else
                {
                    dr.Visible = false; // hide rows that are not beteen start and end date.
                }

            }
        }
        else
        {     
            MessageBox.Show("Please ensure Start Date is set before End Date."); // ensures user selects an end date after the start date.
        }
    }

但是,我有一些问题:

  1. 当我选择不显示任务的日期范围时,应用程序崩溃并出现以下错误:
  2. '与货币经理的头寸相关联的行不能隐藏'

    1. 我有一个打印按钮,可以打印过滤结果。 但是,它正在打印存储在datagridview中的所有数据,即使按下日程表按钮可见某些行= false,所以我猜我需要使用不同的方法来删除行而不是隐藏它们。
    2. datagridview绑定到XML文件,因此只要数据保留在XML文件中,就可以从datagridview中删除数据以进行过滤和打印。

      非常感谢任何帮助!

      三江源

3 个答案:

答案 0 :(得分:3)

我会使用Filter上的bindingsource属性作为datagridviewFilter属性允许您查看DataSource的子集。

来自MSDN的示例:

private void PopulateDataViewAndFilter()
{
    DataSet set1 = new DataSet();

    // Some xml data to populate the DataSet with.
    string musicXml =
        "<?xml version='1.0' encoding='UTF-8'?>" +
        "<music>" +
        "<recording><artist>Coldplay</artist><cd>X&amp;Y</cd></recording>" +
        "<recording><artist>Dave Matthews</artist><cd>Under the Table and Dreaming</cd></recording>" +
        "<recording><artist>Dave Matthews</artist><cd>Live at Red Rocks</cd></recording>" +
        "<recording><artist>Natalie Merchant</artist><cd>Tigerlily</cd></recording>" +
        "<recording><artist>U2</artist><cd>How to Dismantle an Atomic Bomb</cd></recording>" +
        "</music>";

    // Read the xml.
    StringReader reader = new StringReader(musicXml);
    set1.ReadXml(reader);

    // Get a DataView of the table contained in the dataset.
    DataTableCollection tables = set1.Tables;
    DataView view1 = new DataView(tables[0]);

    // Create a DataGridView control and add it to the form.
    DataGridView datagridview1 = new DataGridView();
    datagridview1.AutoGenerateColumns = true;
    this.Controls.Add(datagridview1);

    // Create a BindingSource and set its DataSource property to
    // the DataView.
    BindingSource source1 = new BindingSource();
    source1.DataSource = view1;

    // Set the data source for the DataGridView.
    datagridview1.DataSource = source1;

    //The Filter string can include Boolean expressions.
    source1.Filter = "artist = 'Dave Matthews' OR cd = 'Tigerlily'";
}

我使用此类Filter来显示基于帐户的数据。对于一个帐户,当用户放置帐号时我有一个文本框,我使用TextChanged事件来应用过滤器。然后我有一个按钮,用于从绑定源中删除过滤器。

如果您想按日期过滤,可以按照此SO问题中的说明进行操作:

BindingSource Filter by date

在不存在的日期使用过滤器不应该使应用程序崩溃,它将不会显示任何内容。

答案 1 :(得分:2)

在这里找到了异常的解决方案: http://discuss.itacumens.com/index.php?topic=16375.0

在我尝试将行设置为不可见之前,我直接将其添加到了我的代码中。 row是我的ForEach循环变量。在设置visible属性之前,我检查它是否被选中以及是否尝试清除行和单元格选择。

            If gridItems.SelectedRows.Count > 0 AndAlso row.Index = gridItems.SelectedRows(0).Index Then
                'fixes dumb exception with row.visible = false 
                gridItems.ClearSelection()
                gridItems.CurrentCell = Nothing
            End If

似乎问题在于使当前行或单元格不可见。

答案 2 :(得分:1)

我遇到与例外情况完全相同的问题&#39;与货币经理相关联的行不能隐藏&#39;。

dgridView.CurrentCell = null;
dgridView.Rows[i].Visible = false;

只需将CurrentCell设置为null就可以为我修复它。如果它破坏了某些东西,我还没有进一步检查。