UI library for XNA - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T04:40:10Z http://stackoverflow.com/feeds/question/909671 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/909671/ui-library-for-xna 7 UI library for XNA Ranieri 2009-05-26T08:54:36Z 2009-05-26T16:26:52Z <p>I'm working on a small and simple XNA game and I'm noticing I'm spending way too much time implementing basic UI functionality like menus, (rich) text rendering including wrapping and basic UI lay-out such as alignment of elements. </p> <p>This is a fairly common problem, and I was wondering whether anyone knows of a library to handle these things. I know there are some good skinnable options available to windows programmers (Crazy Eddie's GUI comes to mind), but as I'm targeting the Xbox 360 I would like to find a pure managed solution.</p> http://stackoverflow.com/questions/909671/ui-library-for-xna/909809#909809 4 Answer by dommer for UI library for XNA dommer 2009-05-26T09:31:37Z 2009-05-26T09:31:37Z <p>There's <a href="http://www.codeplex.com/simplegui" rel="nofollow">XNA Simple Gui</a> and <a href="http://www.ziggyware.com/news.php?readmore=374" rel="nofollow">xWinForms</a>. They provide some basic GUI elements. Haven't seen any menu components, though.</p> http://stackoverflow.com/questions/909671/ui-library-for-xna/909836#909836 3 Answer by Noldorin for UI library for XNA Noldorin 2009-05-26T09:40:01Z 2009-05-26T09:40:01Z <p><a href="http://sourceforge.net/projects/xwinforms/" rel="nofollow"><strong>xWinForms</strong></a> is easily the most complete and actively maintained GUI system for XNA. <a href="http://wsx.codeplex.com/" rel="nofollow"><strong>Window System for XNA</strong> (WSX)</a> had some good progress in the past (I was working on it for a while), and is still a decent system, though it hasn't been maintained for over a year now. The best option is definitely to go with xWinForms, at least until <a href="http://stackoverflow.com/questions/43596/how-well-does-wpf-blend-with-xna-in-real-life">WPF interoperability comes along</a> (next version of WPF/XNA?) and makes all the other options effectively obsolete.</p> http://stackoverflow.com/questions/909671/ui-library-for-xna/911308#911308 2 Answer by Hawker for UI library for XNA Hawker 2009-05-26T15:28:39Z 2009-05-26T16:26:52Z <p>Check out the <a href="http://creators.xna.com/en-US/samples/gamestatemanagement" rel="nofollow">Gamestate Management Example</a> for a game menu example. </p> <p>NOTE: Last I checked, it wasn't fully functional with XNA 3.0.</p>