Controls in the same DataGridView column dont render while initializing grid

前端 未结 1 563
不知归路
不知归路 2021-01-06 19:16

GOOD                                                

1条回答
  •  春和景丽
    2021-01-06 20:02

    This worked for me:

        protected override void OnLoad(EventArgs e)
        {
            ControlsInGridViewColumn();  //<- does correctly render controls
            base.OnLoad(e);
        }
    

    0 讨论(0)
提交回复
热议问题