Hello All
I am disable status pane as project requirement.
and created list box.
but list box is not looking good as it is shifted from bottom.
how can I make it till bottom?
I am doing as follows:
In ConstructL()
iItemList = new (ELeave) CAknDoubleGraphicStyleListBox();
iItemList->SetContainerWindowL(*this);
iItemList->SetMopParent(this);
iItemList->ConstructL(this,EAknListBoxSelectionList | EAknListBoxLoopScrolling);//,EAknListBoxSelectionList);
iItemList->CreateScrollBarFrameL(ETrue);
iItemList->SetListBoxObserver(this);
iItemList->ScrollBarFrame()->SetScrollBarVisibilityL(CEikScrollBarFrame::EOff, CEikScrollBarFrame::EAuto);
//Force any scroll bars and the corner window if it is visible to be redrawn
iItemList->ScrollBarFrame()->DrawScrollBarsNow();
iItemList->UpdateScrollBarsL();
iItemList->Model()->SetItemTextArray(titlearray);
iItemList->Model()->SetOwnershipType(ELbmOwnsItemArray);
iItemList->SetCurrentItemIndex(0);
iItemList->SetFocus(ETrue);
iItemList->HandleItemAdditionL();
in sizechange()
TInt x=0;
TRect rect;
TInt height_lab = label->SizeInPixels().iHeight;
s.iHeight = (Rect().Size().iHeight)-(height_lab);
s.iWidth = Rect().Size().iWidth;
iItemList->SetExtent(TPoint(x,height_lab),s);



