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
1314
Selected header content
posted

Hi,

1) ) When I use a stack panel to include a picture in the header contents, the contents are displayed as expected in the group header. However, when the group is selected, the selected group header at the top of the outlook bar displays the class name rather than the contents.

var pnl = new StackPanel { Orientation = Orientation.Horizontal };

 

 

using ( var resource = some image resource) )

if ( resource != null ) {

 

 

var src = new BitmapImage();

src.SetSource(resource);

pnl.Children.Add(

new Image {Source = src});

}

grp.Header = pnl;

 

2) Tooltip do not show when I hover over the group headers.

grp.ToolTip = "some text";

In the examples "grp" is of the type OutlookBarGroup.  Could you kindly inform me why these are so?

Thanks