Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
190
TilePane Header
posted

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!

 

Parents
No Data
Reply
  • 3071
    posted

    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

Children