XAF项目WinForm界面上 Action莫名其妙丢失的问题 (v13.2.6)

关键在于 ViewControl的设计模式修改时, 会自动修改 InitializeComponent()函数,有时候会丢失 参数:this.components

:

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container(); //有时会把这一句搞丢
.........
...........
this.SimpleAction1= new DevExpress.ExpressApp.Actions.SimpleAction(this.components); //和 初始化这个参数 this.components 


}

你可能感兴趣的:(XAF项目WinForm界面上 Action莫名其妙丢失的问题 (v13.2.6))