Hello,
I have the following code:
<igTileView:TilePane Name="Search" Key="Search" Header="Search" Style="{StaticResource TilePaneCustomStyle1}" FontSize="12" FontWeight="Bold"
LayoutUpdated="TilePane_LayoutUpdated" VerticalAlignment="Stretch" HorizontalAlignment
="Stretch">
What I tried to do is to bold the word Search but with the above code, everything inside the panel is bold. Can you help on how solve my problem? Thanks!
Thank you. It worked!
Hi Sam,You can put a TextBlock in the header:<igTileView:TilePane Name="Search" Key="Search"> <igTileView:TilePane.Header> <TextBlock Text="Search" FontSize="12" FontWeight="Bold"/> </igTileView:TilePane.Header></igTileView:TilePane>
Marin