c# - How to show a form infront of all windows interfaces (start screen) -


i want make winforms make in front of many thing (in windows 8, in front of start screen, make can leave desktop while desktop snapping).

for example, magnifier (magnify.exe) dialog in windows 8 top start screen.

it possible make happen (in vb or c#)?

this image example ask for, far didn't find sdk this, , image edited (none of many application except magnifier (magnify.exe))

http://i.stack.imgur.com/1uxcx.png

alternative :

https://docs.google.com/uc?authuser=0&id=0b0xi21kq3jxrlww4cll6x3njsta&export=download

you can make form modal calling form.showdialog()

don't forget set form.dialogresult accordingly on modal form.

an easy example following:

form f = new form(); f.showdialog(this); 

the other option set form's topmost property true.

finally, have modal property block other no modal forms click or keyboard events.

but given winforms desktop app, able show in desktop of windows 8, not new metro interface.


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -