windows 7 jumplist window border style?
-
http://i.msdn.microsoft.com/dynimg/IC295013.png[^] i dont know if this is the right place to ask this but i just want to know if the small popup window on picture above is custom window or if there is an api or something so we can use windows with that kind of border?
-
http://i.msdn.microsoft.com/dynimg/IC295013.png[^] i dont know if this is the right place to ask this but i just want to know if the small popup window on picture above is custom window or if there is an api or something so we can use windows with that kind of border?
That is what you get with
FormBorderStyle.Sizable
orFormBorderStyle.SizableToolWindow
, provided the title bar isn't shown; this requires ControlBox, MaximizeBox, MinimizeBox to be false, and Text to be an empty string. :)Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read formatted code with indentation, so please use PRE tags for code snippets.
I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).
-
http://i.msdn.microsoft.com/dynimg/IC295013.png[^] i dont know if this is the right place to ask this but i just want to know if the small popup window on picture above is custom window or if there is an api or something so we can use windows with that kind of border?
I created a little article[^] and test app showing the different possibilities. Wish MSDN would show actual images of form border styles! :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read formatted code with indentation, so please use PRE tags for code snippets.
I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).