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 


}
posted @ 2014-04-23 12:18  K  阅读(188)  评论(0编辑  收藏  举报

Welcome