http://mort8088.com/2011/03/11/xna-4-0-tutorial-4-spritebatch-extended/#respond
A handy article and code on how to get button images into your strings. Only slightly buggy.
StringBuilder.Clear() won’t work on xbox, so you need to clear the string in another manner.
strBuffer.Clear(); //Won’t work
strBuffer.Length = 0; // works well enough.
