Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
685
wingrid dropdown - order of event firing - BeginUpdate
posted

Re: Wingrid and using dropdowns inside the grid, i find that all of my
 "ultraDropDownTaskArea_InitializeLayout" , " ultraDropDownProject_InitializeLayout" etc.
events fire after form is loaded.

It makes it difficult to freeze the screen as it is loading.

e.g.

load

            this.SuspendLayout();
            this.ultraGrid1.BeginUpdate();
            this.percentageDataDataGridView.BeginUpdate();
            this.bEAEmployeeListGrid.BeginUpdate();
            this.bEATaskOverRide1Grid.BeginUpdate();

 .......................................................

           this.ultraGrid1.EndUpdate();
            this.percentageDataDataGridView.EndUpdate();
            this.bEAEmployeeListGrid.EndUpdate();
            this.bEATaskOverRide1Grid.EndUpdate();
            this.ResumeLayout();

end load

What can i do ?
Do i need to make the form invisible until the last moment?