I'm using the following code to put buttons with each category name, but I'm not getting (I do not know how to search) convert to background image, just give me the tostring option.
{
ctx.DefaultContainerName = "kinectEntities";
Console.WriteLine("View criada.. parametro = " + id);
//cria a query geral.. "select * from produtos"
ObjectSet<produtos> query = ctx.CreateObjectSet<produtos>();
//cria a query com o where "select * from produtos where id_categoria = ?"
var query2 = query.Where("it.id_categorias = @categoria");
//adiciona o parametro na query2 select * from produtos where id_categoria = 7"
query2.Parameters.Add(new ObjectParameter("categoria", id));
foreach (produtos r in query2)
{
//percorrendo registros da base
var button = new KinectTileButton { Label = (r.valor).ToString(CultureInfo.CurrentCulture), Tag = r.id,
--->Background = r.imagem.ToString()<----};
button.Click += KinectTileButtonClick;
this.wrapPanel.Children.Add(button);
}