Hi,
I'd really like to remove the header from each tile on the tilemanager, is this possible?
Regards
S
There is a sample attached to this forum post where the tile header has been removed thru applying styles.
http://es.infragistics.com/community/forums/t/64553.aspx
Of course he has also lost the control buttons to maximize, minimize and expand the tiles.
Take a look and let me know if that does what you need.
Thank you for your response, however i'm very new to WPF and don;t use silverlight at all and hence i'm finding this example hard to follow.
I am currently programattically populating the tile manager in code, is it possible to remove the headers in code?
Thanks
I re-created the sample using WPF although really nothing changed. The sample is still using styles to hide the headers.
I left the xamTIleManager declared in xaml. If you are using code behind to accomplish that you can still use the styles and templates defined in the resources and then the only additional piece of code you would need to add would be to get a reference to the itemDataTemplate and assign it to the ItemTemplate of the xamTileManager control.
DataTemplate dt = (DataTemplate)gridLayout.FindResource("itemDataTemplate");
TileMgrWidget.ItemTemplate = dt;
Please let me know if you have any questions.