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
155
Exporer bar adding image to group
posted

A very basic question but how can you add an image to a group in an explorer bar?

 

Thanks

 

 

Parents
No Data
Reply
  • 28464
    posted

    Just a quick follow-up:

    Alternatively, you can set the BackgrounImage property of the Style of the respected appearance type of the header (collapsed, hover, expanded), as shown in the WindowsXP Style example in the online browsers site here:

    http://samples.infragistics.com/2007.3/webfeaturebrowser/default.htm

    e.g. 

        <HeaderAppearance>
            <CollapsedAppearance ExpansionIndicatorImage="./images/downarrow_sel.gif">
                <Style BackgroundImage="./images/XP_Selected.gif"></Style>
            </CollapsedAppearance>
            <HoverAppearance ExpansionIndicatorImage="./images/upArrow_sel.gif">
                <Style BackgroundImage="./images/XP_Selected.gif"> </Style>
            </HoverAppearance>
            <ExpandedAppearance ExpansionIndicatorImage="./images/upArrow_sel.gif">
                <Style ForeColor="white" Height="33px" BackgroundImage="./images/XP_Selected.gif"></Style>
            </ExpandedAppearance>
        </HeaderAppearance>

Children
No Data