Detecting Graphic Options in .NET - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T14:27:21Z http://stackoverflow.com/feeds/question/167084 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/167084/detecting-graphic-options-in-net 0 Detecting Graphic Options in .NET Dean 2008-10-03T14:16:54Z 2008-10-03T14:27:21Z <p>What is the the best of detecting and later altering the screen resolution and multiple desktop within .net</p> <p>I have a small app that while runs at work on my multiple monitor/high(ish) resolution however what I want to be able to detect is the users primary monitor and set the application to that (main objective) and adjust the resolution to ensure the application fits(more for my own curiosity) </p> http://stackoverflow.com/questions/167084/detecting-graphic-options-in-net/167102#167102 2 Answer by Bob King for Detecting Graphic Options in .NET Bob King 2008-10-03T14:20:55Z 2008-10-03T14:20:55Z <p>I would never suggest altering a user's resolution unless you're doing something like a full-screen game, you can use</p> <pre><code> System.Windows.Forms.Screen.PrimaryScreen </code></pre> <p>to give you metrics about that main monitor.</p> http://stackoverflow.com/questions/167084/detecting-graphic-options-in-net/167133#167133 0 Answer by John Rudy for Detecting Graphic Options in .NET John Rudy 2008-10-03T14:27:21Z 2008-10-03T14:27:21Z <p>If you're working on a WinForms-based application, in addition to using the Screen metrics described by Bob King, you can also go with layout controls, such as TableLayout and FlowLayout. Layout controls allow you to design your UI to adapt to the screen/window size cleanly. (The WinForms app I'm currently working on does this very well, down to a minimum of 1024x768, up to whatever your heart desires, scaling controls all the way.)</p> <p>Preemptive comment: Yes, TableLayouts do involve a performance hit. However, my experience has been that users tend to be OK with it when shown the benefits. (New monitor: The app still looks great and works!)</p>