0

有没有办法在不删除摘要行的情况下设置 UltraGrid 的数据源?

我的 Windows 窗体应用程序中有一个 ultragrid gvResult

用户可以选择列并以另一种形式对它们进行排序,然后通过按“应用”按钮将这些更改应用到 gvResult。

此外,gvResult必须显示行计数器摘要。

我在应用用户更改之前清除了 gvResult,否则排序算法不会更改为用户设置的值。

gvResult.DataSource = new DataTable();
gvResult.DataSource = dataTable_With_New_Set_And_Sort_of_Columns;

这里面还有另一个问题!它也删除了行计数器摘要以及gvResult. 我在基础设施论坛上搜索,发现以下代码;但是,第一个问题仍然存在。列排序不会改变。

BindingSource bs = new BindingSource();
bs.DataSource = typeof(DataTable);
bs.DataSource = dataTable_With_New_Set_And_Sort_of_Columns;
gvResult.DataSource = bs;

你有什么建议吗?

对不起,因为我的英语不好。

编辑:我尝试了类似下面的方法,但它不再起作用:

DataTable dtTest = new DataTable();
dtTest.Rows.Clear();
dtTest = Method_That_Returns_DataTable_With_New_Set_And_Sort_of_Columns();
gvResult.DataSource = dtTest.Copy();
4

1 回答 1

0

M_Mogharrabi,

如果我理解你想怎么做,这可能对你有用。

每当您将数据绑定到 UltraGrid 时,IntializeLayout每次都会触发该事件,因此您需要确保将摘要行设置为在InitializeLayout函数中可见。

像这样:

    private void yourUltraGrid_InitializeLayout(object sender, InitializeLayoutEventArgs e)
    {
        // Define Global settings like you usually do
        // ....

        // Configure your UltraGrid columns.
        //// ID
        //// Caption: "ID"
        e.Layout.Bands[0].Columns[ColumnKeyA].Header.Caption = "ID";
        e.Layout.Bands[0].Columns[ColumnKeyA].Header.VisiblePosition = 0;
        e.Layout.Bands[0].Columns[ColumnKeyA].Width = 50;
        // Any additional settings you may want for this column.
        // Repeat for each column...


        // Then add this block under each column you want to add Summary value to.

        // This if function is critical to avoid summary rows from duplicating itself.
        // Check to see if the Summary does not exist.
        if (!e.Layout.Bands[0].Summaries.Exists("yourSummaryKey"))
        {
            // If it doesn't exist, create the summary.
            SummarySettings summary;
            summary = e.Layout.Bands[0].Summaries.Add("yourSummaryKey", SummaryType.Sum,
                e.Layout.Bands[0].Columns[ColumnKeyA]);

            // Change the Display Formatting if you desire.
            // This display format will change it to just numbers
            // instead of "Sum = 1234"
            summary.DisplayFormat = "{0}";

            // Change the horizontal alignment for the cell text.
            summary.Appearance.TextHAlign = Infragistics.Win.HAlign.Left;

            // Apply any other settings to this summary column
            // if needed.
            // ...
        }
    }

注意:摘要行仅适用于父波段。无法为子乐队设置摘要行。

如果要重置数据网格,请将以下内容添加到代码中(但不在 InitializeLayout 函数中)

    private void btnReset_Click(object sender, EventArgs e)
    {
        yourUltraGrid.DeleteSelectedRows();

        // This will trigger the yourUltraGrid_InitializeLayout event
        // and will ensure the column settings are defined.
        yourUltraGrid.DataSource = Prototype.ugGetResourcePlanning();
    }

这将保留对排序算法所做的任何更改。所以在这个例子中:如果用户对 UltraGrid 进行了任何更改并随之更改了排序算法。点击“重置”按钮只会恢复数据,不会恢复排序算法。

希望这可以帮助。

于 2016-06-23T14:35:15.293 回答