Hello,
is there a way to define a hotspotarea in METRO
like possible in MAIN-WINDOWS.
I want to create a sliding toolbar. In a main-window it works fine :
On focus the bar slides ( opens ) from right to left.
On lostfocus the bar slides from left to right ( hidden )
oWnd:bMMoved = { | nRow, nCol, nFlags | ;
IIF( nRow < 30 .and. nCol > aRect4 - 110, ;
IIF( lDlgaktive = .F., ( Show_Dlg(oWnd), ;
DLG_MOVE(oDlg, 0, aRect4 -110, aRect3, aRect4, 2) ), NIL ), ;
IIF( lDlgaktive = .T., ( lDlgaktive := .F., DLG_MOVE(oDlg, 0, aRect4 -110, aRect3, aRect4 , 1) ), NIL ) ) }
On MAIN-WINDOW
Possible in METRO ???
Best Regards
Uwe