I have used this code into my proyect, but there is a problem when i try to put a text into the header of the tiles.
this is the code:
<
igTiles:XamTilesControl.ItemHeaderTemplate>
<DataTemplate >
<Grid>
<Label Content="{Binding prueba}" ></Label>
</Grid>
</DataTemplate>
</igTiles:XamTilesControl.ItemHeaderTemplate>
The problem is with the binding of the property "prueba" that not works. The property "prueba" is a String, as we can see on the code behind.
public
string stringDePrueba = "";
public string
prueba{
get { return stringDePrueba; }
set { stringDePrueba = value; }}
Thank you very much.
Hi,
Thank you for your feedback. I am glad that you resolved your issue and I believe that other community members may benefit from this as well.
Thanks again.