Habanero.Faces.Base.PanelFactoryInfo.PanelFactoryInfo C# (CSharp) Method

PanelFactoryInfo() public method

Constructor to initialise a new instance of the class
public PanelFactoryInfo ( IPanel panel, IControlMapperCollection mappers, string uiDefName, IControlHabanero firstControlToFocus ) : System
panel IPanel The panel control being managed
mappers IControlMapperCollection The control mappers collection
uiDefName string The UI definition name to use
firstControlToFocus IControlHabanero The first control to focus on
return System
        public PanelFactoryInfo(IPanel panel, IControlMapperCollection mappers, string uiDefName, IControlHabanero firstControlToFocus)
        {
            _panel = panel;
            _mappers = mappers;
            _firstControlToFocus = firstControlToFocus;
            _uiDefName = uiDefName;
            _formGrids = new Dictionary<string, IEditableGridControl>();
        }

Same methods

PanelFactoryInfo::PanelFactoryInfo ( IPanel panel ) : System