winforms 如何清除无汇总图超高压电网的所有数据和布局

k5hmc34c  于 2022-11-16  发布在  其他
关注(0)|答案(1)|浏览(129)

有没有办法设置UltraGrid的数据源而不删除其摘要行?
我的Windows窗体应用程序中有一个ultragrid gvResult
用户可以选择列并在另一个表单中对它们进行排序,然后通过按“Apply”按钮将这些更改应用到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();
bejyjqdl

bejyjqdl1#

莫加拉比,
如果我能理解你想怎么做,这可能对你有用。
每当您将数据绑定到UltraGrid时,每次都会触发IntializeLayout事件,因此您需要确保将Summary Row设置为在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进行了任何更改,并沿着更改了排序算法。单击“重置”按钮将仅恢复数据,而不恢复排序算法。
希望这对你有帮助。

相关问题