Skip to content

Commit ca49024

Browse files
committed
address TabStrip review, improve clarity
1 parent be1cb96 commit ca49024

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/reference/controls/tabstrip.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import TabStripNavigation from '/img/reference/controls/tabstrip/tabstrip-naviga
99

1010
Displays a strip of tab headers. You can use this control as a horizontal menu.
1111

12-
The `TabStrip` is comprised of `TabStripItem` children. Children are displayed in order of appearance and can be created by either a collection of `TabStripItem`s or generated by `ItemsSource`.
12+
The `TabStrip` is composed of `TabStripItem` children. `TabStripItems` are displayed in order of appearance and can be created by either: 1. a collection of `TabStripItem`s or 2. generated by `ItemsSource`.
1313

14-
Unlike `TabControl`, `TabStrip` is not responsible for presenting the content of the selected tab. Instead, respond to the `SelectionChanged` event or `SelectedItem` property changes and use a separate control such as `ContentControl` to present the desired content. This allows developers full control over the displayed content, such as custom view caching.
14+
Unlike `TabControl`, `TabStrip` is not responsible for presenting the content of the selected tab. Instead, `TabStrip` requires developers to respond to `SelectionChanged` events or `SelectedItem` property changes and then present the desired content with a separate control, such as `ContentControl`. This gives developers full control over the displayed content and enables use cases such as custom view caching.
1515

1616
## Example: TabStrip with TabStripItem
1717

0 commit comments

Comments
 (0)