views:

34

answers:

1

A toolbar control has been created as a common user control, this control has 2 different states (checked and unchecked). When the state changes it is suppose to display a different tooltip based upon it's state. However, I can only get a single tooltip option to display even though the state changes to (checked or unchecked).

Case eAToolbarButtonType.ToggleActiveInactive
   .ImageUrl = "button_blue_inactive_unsel_v5.png"
   .ToolTip = "Click to Display Inactive Products"
   .CheckedImageUrl = "button_blue_inactive_sel_v5.png"
   .CheckedToolTip = "Click to Hide Inactive Products"
   .HoveredImageUrl = "button_blue_inactive_roll_v5.png"
   .IsChecked = EAUser.Profile.ShowInactiveProducts
   .ProfileProperty = "ShowInactiveProducts"
A: 

I figured out a solution.
Thanks