Custom titlebars/chrome in a WinForms app - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T11:32:48Z http://stackoverflow.com/feeds/question/42460 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/42460/custom-titlebars-chrome-in-a-winforms-app 6 Custom titlebars/chrome in a WinForms app OwenP 2008-09-03T20:04:47Z 2008-09-20T04:26:36Z <p>I'm almost certain I know the answer to this question, but I'm hoping there's something I've overlooked.</p> <p>Certain applications seem to have the Vista Aero look and feel to their caption bars and buttons even when running on Windows XP. (Google Chrome and Windows Live Photo Gallery come to mind as examples.) I know that one way to accomplish this from WinForms would be to create a borderless form and draw the caption bar/buttons yourself, then overriding <code>WndProc</code> to make sure moving, resizing, and button clicks do what they're supposed to do (I'm not clear on the specifics but could probably pull it off given a day to read documentation.) I'm curious if there's a different, easier way that I'm overlooking. Perhaps some API calls or window styles I've overlooked?</p> <p>I believe Google has answered it for me by using the roll-your-own-window approach with Chrome. I will leave the question open for another day in case someone has new information, but I believe I have answered the question myself.</p> http://stackoverflow.com/questions/42460/custom-titlebars-chrome-in-a-winforms-app/42481#42481 -2 Answer by Pascal for Custom titlebars/chrome in a WinForms app Pascal 2008-09-03T20:17:03Z 2008-09-03T20:17:03Z <p>Nope, I am afraid, there is no other easy way of doing this. </p> <p>You are on the right track. You will need to create a custom Winform and then proceed as illustrated in this <a href="http://codemaverick.blogspot.com/2007/02/creating-custom-winforms-in-net-20-yes.html" rel="nofollow">example</a>.</p> http://stackoverflow.com/questions/42460/custom-titlebars-chrome-in-a-winforms-app/42737#42737 -2 Answer by Artem Tikhomirov for Custom titlebars/chrome in a WinForms app Artem Tikhomirov 2008-09-03T22:18:48Z 2008-09-03T22:18:48Z <p>Yes. There are simle way, but it'll cost you money. All large custom control vendors have nice wrappers around WM_NCPAINT and company.</p> http://stackoverflow.com/questions/42460/custom-titlebars-chrome-in-a-winforms-app/42768#42768 0 Answer by FlySwat for Custom titlebars/chrome in a WinForms app FlySwat 2008-09-03T22:43:35Z 2008-09-03T22:43:35Z <p>Google Chrome uses the Windows Vista SDK to get the glass look on XP. You can download it here:</p> <p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=4377f86d-c913-4b5c-b87e-ef72e5b4e065&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=4377f86d-c913-4b5c-b87e-ef72e5b4e065&amp;displaylang=en</a></p> <p>Using this, you need to enabled delay loading of the following DLL's to get the Glass Effect in XP:</p> <ul> <li>uxtheme.dll </li> <li>dwmapi.dl</li> </ul> http://stackoverflow.com/questions/42460/custom-titlebars-chrome-in-a-winforms-app/43011#43011 1 Answer by OwenP for Custom titlebars/chrome in a WinForms app OwenP 2008-09-04T01:33:44Z 2008-09-04T01:33:44Z <p>@Jonathan Holland: Is this something that can be done from .NET?</p> http://stackoverflow.com/questions/42460/custom-titlebars-chrome-in-a-winforms-app/43015#43015 1 Answer by FlySwat for Custom titlebars/chrome in a WinForms app FlySwat 2008-09-04T01:36:58Z 2008-09-04T01:36:58Z <blockquote> <p>@Jonathan Holland: Is this something that can be done from .NET?</p> </blockquote> <p>Yes, using DllImport. Here is a good blog post:</p> <p><a href="http://blogs.msdn.com/tims/archive/2006/04/18/578637.aspx" rel="nofollow">http://blogs.msdn.com/tims/archive/2006/04/18/578637.aspx</a></p> http://stackoverflow.com/questions/42460/custom-titlebars-chrome-in-a-winforms-app/43853#43853 0 Answer by OwenP for Custom titlebars/chrome in a WinForms app OwenP 2008-09-04T14:21:17Z 2008-09-04T15:07:22Z <p>Hmmm... the blog article produces a Vista-only application, and it's only working because on Vista the window has glass by default.=. I'm going to have to unanswer the question for now. In the meantime, I'm going to dig through the Chromium source to see if it's reasonable.</p> http://stackoverflow.com/questions/42460/custom-titlebars-chrome-in-a-winforms-app/44398#44398 3 Answer by OwenP for Custom titlebars/chrome in a WinForms app OwenP 2008-09-04T18:26:09Z 2008-09-04T18:34:08Z <p>Google Chrome is <em>not</em> using the Vista SDK to achieve this on XP. If you peek into <code>src\chrome\browser\views\frame</code> there are several files to define the browser frame depending on the capabilities of the system. On XP, it looks like <code>OpaqueFrame</code> is used; line 19 has this to say:</p> <pre><code>// OpaqueFrame // // OpaqueFrame is a CustomFrameWindow subclass that in conjunction with // OpaqueNonClientView provides the window frame on Windows XP and on Windows // Vista when DWM desktop compositing is disabled. The window title and // borders are provided with bitmaps.</code></pre> <p>It looks like it's using the resources in <code>src\chrome\app\theme</code> to draw the frame buttons.</p> <p>So it looks like my hopes that there's some kind of cheap way to enable Vista theming on XP are dashed. The only way to do it is to manually draw the non-client area of your window. I believe <a href="http://geekswithblogs.net/kobush/articles/CustomBorderForms.aspx" rel="nofollow">something like this</a> is probably the right track, since it lets Windows handle the non-client stuff like moving and resizing the window.</p> <p>Unless someone can find a method to magically enable the Vista theming on XP, this is the answer to the question but I obviously cannot mark my own post as the answer.</p> http://stackoverflow.com/questions/42460/custom-titlebars-chrome-in-a-winforms-app/46925#46925 2 Answer by Judah Himango for Custom titlebars/chrome in a WinForms app Judah Himango 2008-09-05T21:26:53Z 2008-09-05T21:26:53Z <p>Owen, I'm using Chrome on XP and I don't see "Vista Aero" glass theme on the Chrome window. I see it as solid blue.</p> <p>If it's custom theming of controls and windows title bars you want, that can be accomplished. There's an excellent, free UI toolkit for WinForms that does exactly that: <a href="http://componentfactory.com" rel="nofollow">KryptonToolkit</a></p> http://stackoverflow.com/questions/42460/custom-titlebars-chrome-in-a-winforms-app/46993#46993 0 Answer by OwenP for Custom titlebars/chrome in a WinForms app OwenP 2008-09-05T22:21:05Z 2008-09-05T22:21:05Z <p>I decided not to close it because I can't figure out why it would be a good idea to close it. If someone happens to know a quick trick then I'd love to know it, and closing the question denies them this chance.</p> <p>@Judah Himango: It's not really glass on XP, but it has the same look without the transparency. Take a look at some of the chrome screenshots and you'll see what I mean. Instead of the traditional square buttons with the big red close button, it's a compact set of rectangular buttons that look like part of the frame. It basically looks like Aero without the class.</p> <p>I was aware there's a few third-party toolkits to do this, but I was more interested in learning how it was done than finding something I could purchase to do it for me. It looks like the solution isn't trivial, but it can be done. I was mainly curious if there was something quick and easy, sort of like how <code>EnableVisualStyles</code> enables themed controls in .NET 2.0.</p> http://stackoverflow.com/questions/42460/custom-titlebars-chrome-in-a-winforms-app/107103#107103 5 Answer by Chris Pietschmann for Custom titlebars/chrome in a WinForms app Chris Pietschmann 2008-09-20T04:26:36Z 2008-09-20T04:26:36Z <p>Here's an article with full code sample on how to use your own custom "chrome" for an application:</p> <p><a href="http://geekswithblogs.net/kobush/articles/CustomBorderForms3.aspx" rel="nofollow">http://geekswithblogs.net/kobush/articles/CustomBorderForms3.aspx</a></p> <p>This looks like some really good stuff. There are a total of 3 articles in it's series, and it runs great, and on Vista too!</p>