CWinCtrlFrame

Script: FRAME

This is the control to display the frame.

Unlike bar, it does not have a caption.

Callbacks arriving at :class:`CWindowBase<CWindowBase>`

Example of use

// get control
CWinCtrlFrame  ctrlStart = find(FRAME_BG) as CWinCtrlFrame;

// click callback
override protected void onClick(CWinCtrlBase cCtrl) {
    switch (cCtrl.id) {
      case FRAME_BG:
        break;
     }
}