c++ - Resizing the Input Panel in Windows Mobile 6.5 -
i've created soft input panel running in windows mobile 6.5. problem is, de bitmap showing keys bigger standard keyboard of wm6.5, need resize window of sip, should cover half screen.
my sip works implementation class , window class, implementation class contains inherited methods of iinputpanel in c++ , creates window sip. window created following code:
this->m_psipwnd->createex(0, etssip_wndclass, null, ws_child | ws_visible, 0, 0, (rc.right - rc.left), (rc.bottom - rc.top), this->m_hwndparent, (hmenu)null, 0);
where rc client rect , m_hwndparent hwnd sent along select method of iinputpanel.
if set size manually 250 e.g., new created sip window has size of standard sip in wm6.5. i've set registry key hkcu\controlpanel\sip\dragstyle 0x01, sip displayed title bar , draggable on screen, try, size keeps same.
is there possibilty change size of sip window, if yes, in method should done? answers
Comments
Post a Comment