You should use CEikEdwin::SetBackgroundColorL() to set the Edwin's background colour.
void CMyEditorContainer::ConstructL(const TRect& aRect)
{
...
iEdwin = new (ELeave) CEikGlobalTextEditor;
iEdwin->SetContainerWindowL(*this);
iEdwin->SetBackgroundColorL(KMyCustomColor);
...
}
class CMyEditorContainer: public CCoeControl, MCoeControlObserver
{
...
private:
CEikGlobalTextEditor* iEdwin;
...
}
How to use custom background color for edwin in 3rd
--
No related wiki articles found