?? waitdialog.cpp
字號:
#include "oandxcontroller.h"
CWaitDialog::CWaitDialog(const TDesC& aBodyText)
/**
Record text to display in dialog.
@param aBodyText Text to display in wait dialog label.
The caller must maintain this text for the dialog's
lifetime.
*/
: iBodyText(aBodyText)
{
// empty.
}
void CWaitDialog::PreLayoutDynInitL()
/**
Override CEikDialog by setting the label text to that
which was supplied to the constructor.
*/
{
CEikLabel* plb = static_cast<CEikLabel*>(Control(EWaitDlgCtIdLabel));
plb->SetTextL(iBodyText);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -