DevExpress Unbound列事件未触发,WinForms

时间:2015-07-31 12:39:07

标签: c# winforms devexpress devexpress-windows-ui

我创建了一个未绑定的列,我打算用计算数据填充;但是,我无法触发CustomUnboundColumnData事件。我基本上复制了https://documentation.devexpress.com/#WindowsForms/CustomDocument1477

上的DevExpress文档中的代码

根据发现的其他帖子,我确保没有其他具有相同名称的列。 新的未绑定列确实出现在网格中,但事件永远不会触发,所以我不知道如何填充它。

在我的构造函数中,我按如下方式定义列:(我确保没有其他具有相同名称的列)

        GridColumn testColumn = new GridColumn();
        testColumn.FieldName = "Test Column1";
        testColumn.VisibleIndex = gridView1.Columns.Count;
        testColumn.UnboundType = DevExpress.Data.UnboundColumnType.DateTime;
        // Disable editing.
        testColumn.OptionsColumn.AllowEdit = true;
        // Specify format settings.
        testColumn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
        testColumn.DisplayFormat.FormatString = "d";
        testColumn.Visible = true;
        gridView1.Columns.Add(testColumn);

然后我的事件功能永远不会触发

private void gridView1_CustomUnboundColumnData(object sender, CustomColumnDataEventArgs e)
    {
        MessageBox.Show("unbound column a go go");
  1. 如何填充未绑定的列?

1 个答案:

答案 0 :(得分:0)

感谢DevExpress支持论坛(顺便说一句,这非常好)

我错过了gridView1.CustomUnboundColumnData += gridView1_CustomUnboundColumnData;的行,它告诉网格哪些事件处理程序用于未绑定的列