This is a migrated thread and some comments may be shown as answers.

GroupBox header as image

3 Answers 129 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
vijay
Top achievements
Rank 1
vijay asked on 19 Aug 2011, 05:07 PM
Hi all,

i am working with GROUP BOX.

I want to place the Image as groupbox header.

is it possible to achive this.can you please help me.

Thanks in advance
-Vijay

3 Answers, 1 is accepted

Sort by
0
Pana
Telerik team
answered on 22 Aug 2011, 07:24 AM
Hi,

The Header property is of type object so you could place anything inside. Please consider the following example:

<Grid x:Name="LayoutRoot" Background="White">
    <telerik:GroupBox Margin="10">
        <telerik:GroupBox.Header>
            <StackPanel Orientation="Horizontal">
                <Image Width="16" Height="16" Source="cart_16.png" Margin="4 0" />
                <TextBlock Text="Shopping Cart" />
            </StackPanel>
        </telerik:GroupBox.Header>
        <telerik:GroupBox.Content>
            <ListBox BorderThickness="0" Margin="0 4 0 0">
                <ListBoxItem Content="Item 1" />
                <ListBoxItem Content="Item 2" />
                <ListBoxItem Content="Item 3" />
            </ListBox>
        </telerik:GroupBox.Content>
    </telerik:GroupBox>
</Grid>


Greetings,
Pana
the Telerik team

Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>

0
vijay
Top achievements
Rank 1
answered on 22 Aug 2011, 11:55 AM
Working...Thanks
0
Mask
Top achievements
Rank 1
answered on 22 Aug 2011, 02:51 PM
Sorry For offtopic :( but Maybe you know Abou t this problem
plz check this
http://www.telerik.com/community/forums/silverlight/maskedtextbox/maskedtextbox-problem.aspx
Tags
General Discussions
Asked by
vijay
Top achievements
Rank 1
Answers by
Pana
Telerik team
vijay
Top achievements
Rank 1
Mask
Top achievements
Rank 1
Share this question
or