I have a Tab Control with multiple Tab Pages. I want to be able to fade the tabs back and forth. I don\'t see an opacity option on the Tab Controls. Is there a way to cause a fa
I don't believe that the WPF TabControl can be brought to fade from one TabItem to the next, since it is not equipped to display multiple TabItems simultaneously.
You could try to emulate this by stitching together two ListView
s (one for the tab strip and one for the panel) and add the effect into the ControlTemplate
of the latter. Use the ControlTemplates of the TabControl and the ListView as starting point.