如何添加列表

href="file:///C:/DOCUME~1/yicha/LOCALS~1/Temp/msohtml1/01/clip_filelist.xml" rel="File-List" />

1 CEikColumnListBox* iListBox;

2 创建:

iListBox = new ( ELeave ) CAknSingleNumberStyleListBox();     

iListBox->SetContainerWindowL( *this );

销毁:

if( iListBox ) delete iListBox; 

3 添加:

CDesCArray* itemArray =

        static_cast<CDesC16ArrayFlat*>(iListBox->Model()->ItemTextArray());

itemArray->AppendL();

iListBox->HandleItemAdditionL();

 

4 view

#include <eiklbo.h>

继承: 必须继承这些方法,否则不显示.

CCoeControl

重载:

TInt CountComponentControls() const;

{return 1; }

CCoeControl *ComponentControl(TInt aIndex) const;

{switch( aIndex )

        {

        case 0:

            return iListBox;

        default:

            return NULL;               

        }

}

void SizeChanged();

{if ( iListBox )

        {

        iListBox->SetRect( Rect() );

        }

}

TKeyResponse OfferKeyEventL(const TKeyEvent &aKeyEvent, TEventCode aType); 

if ( aKeyEvent.iCode == EKeyDownArrow || aKeyEvent.iCode == EKeyUpArrow )

        // Forward key events to listbox               

        return iListBox->OfferKeyEventL( aKeyEvent, aType );

   

    return EKeyWasNotConsumed;   

 

ConstructL:

CreateWindowL(); // Creates window.       

    SetRect( aRect ); // Sets rectangle of frame.

       

    CreateListboxL();

    iListBox->SetRect(Rect());

    iListBox->MakeVisible( ETrue );

    iListBox->SetFocus(ETrue);

   

    ActivateL(); // Activates window. ( Ready to draw )   

 

CreateListboxL

 

iListBox = new ( ELeave ) CAknSingleNumberStyleListBox();

iListBox->SetContainerWindowL( *this );

iListBox->ConstructFromResourceL( reader );

 

6 使用:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值