c# - Programmatically handling the Vista Sidebar -


is there api bring vista side bar front (win+space) programatically , reverse (send ground).

probably using setwindowpos can change placed top / bottom of z-order or top-most window. need find handle sidebar using findwindow or application winspy.

but after like.

sets window on top, not top most.

setwindowpos(sidebarhandle, hwnd_top, 0, 0, 0, 0, swp_nomove | swp_noresize); 

sets window @ bottom.

setwindowpos(sidebarhandle, hwnd_bottom, 0, 0, 0, 0, swp_nomove | swp_noresize); 

this best guess on achieving asked, helps.


Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -