Inheritance: Habanero.Faces.Win.GridBaseWin
 protected override IGridBase CreateGridBaseStub()
 {
     GridBaseWinStub gridBase = new GridBaseWinStub();
     System.Windows.Forms.Form frm = new System.Windows.Forms.Form();
     frm.Controls.Add(gridBase);
     return GetControlledLifetimeFor(gridBase);
 }
Example #2
0
        protected override IGridBase CreateGridBaseStub()
        {
            GridBaseWinStub gridBase = new GridBaseWinStub();

            System.Windows.Forms.Form frm = new System.Windows.Forms.Form();
            frm.Controls.Add(gridBase);
            return(GetControlledLifetimeFor(gridBase));
        }
 protected override IBOColSelectorControl CreateSelector()
 {
     GridBaseWinStub gridBase = new GridBaseWinStub();
     System.Windows.Forms.Form frm = new System.Windows.Forms.Form();
     frm.Controls.Add(gridBase);
     SetupGridColumnsForMyBo(gridBase);
     return GetControlledLifetimeFor(gridBase);
 }