Hi, i m try the ultralivetileview.
by design i create some groups and in every group some tiles
now i want change the info displayed in every tile from code
i try to found, for example, the text in a mediumblocktile (misc/content/textblock) (the first tile in the first group)
i try with:
ultralivetileview1.groups(0).tiles(0) but i dont found properties for change the textblock or the textsubblock.
How can change it?
tks
perfect, tks a lot!!
Hi,
Please let me know if you need my further assistance on this matter.
Thank you for using Infragistics Components.
Hello James,
Thank you for contacting Infragistics Support.
In order to change the info of the tile in LiveTileView you need to get the tile instance and to set its Text property. You may use code like the sample below:
StaticTile staticTile = (StaticTile)this.ultraLiveTileView1.Groups[0].Tiles[0];
staticTile.DefaultView.Text = "My tile text";
More about setting LiveTileView runtime you may find by following the next link http://help.infragistics.com/Doc/WinForms/current/CLR4.0/?page=WinLiveTileView_Adding_WinLiveTileView_in_Code-Behind.html
Please find attached a sample solution implementing this approach and let me know if this is what you are looking for or if I am missing something.