What is the best way to hide Tab headers when there is only a single visible Tab?
I want to hide TabControl chrome completely, while leaving the content of the Tab visible.
|
What is the best way to hide Tab headers when there is only a single visible Tab? I want to hide TabControl chrome completely, while leaving the content of the Tab visible. |
|||
|
|
|
You can use a Style applied to TabItem with a DataTrigger that will collapse it if the parent TabControl has only one item:
If you want to get rid of the TabControl completely if there is only one item, that logic should probably be at a higher level. |
||||
|
|