diff --git a/active/tab/images/TabView_dark.png b/active/tab/images/TabView_dark.png
new file mode 100644
index 000000000..c5f343616
Binary files /dev/null and b/active/tab/images/TabView_dark.png differ
diff --git a/active/tab/images/TabView_dark_accent.png b/active/tab/images/TabView_dark_accent.png
new file mode 100644
index 000000000..e31a11c36
Binary files /dev/null and b/active/tab/images/TabView_dark_accent.png differ
diff --git a/active/tab/images/TabView_light.png b/active/tab/images/TabView_light.png
new file mode 100644
index 000000000..cc7e3460c
Binary files /dev/null and b/active/tab/images/TabView_light.png differ
diff --git a/active/tab/images/TabView_light_accent.png b/active/tab/images/TabView_light_accent.png
new file mode 100644
index 000000000..b889611a2
Binary files /dev/null and b/active/tab/images/TabView_light_accent.png differ
diff --git a/active/tab/images/tab-control-keyboarding-1.PNG b/active/tab/images/tab-control-keyboarding-1.PNG
new file mode 100644
index 000000000..082ae8c3a
Binary files /dev/null and b/active/tab/images/tab-control-keyboarding-1.PNG differ
diff --git a/active/tab/images/tab-control-keyboarding-2.PNG b/active/tab/images/tab-control-keyboarding-2.PNG
new file mode 100644
index 000000000..049e6de1d
Binary files /dev/null and b/active/tab/images/tab-control-keyboarding-2.PNG differ
diff --git a/active/tab/images/tab-control-keyboarding-3.PNG b/active/tab/images/tab-control-keyboarding-3.PNG
new file mode 100644
index 000000000..cbb8f7597
Binary files /dev/null and b/active/tab/images/tab-control-keyboarding-3.PNG differ
diff --git a/active/tab/images/tab-control-parts-1.PNG b/active/tab/images/tab-control-parts-1.PNG
new file mode 100644
index 000000000..3e97306de
Binary files /dev/null and b/active/tab/images/tab-control-parts-1.PNG differ
diff --git a/active/tab/images/tab-control-parts-2.PNG b/active/tab/images/tab-control-parts-2.PNG
new file mode 100644
index 000000000..18186409c
Binary files /dev/null and b/active/tab/images/tab-control-parts-2.PNG differ
diff --git a/active/tab/images/tab-control-parts-3.PNG b/active/tab/images/tab-control-parts-3.PNG
new file mode 100644
index 000000000..91119896e
Binary files /dev/null and b/active/tab/images/tab-control-parts-3.PNG differ
diff --git a/active/tab/images/tab-extend-to-title.png b/active/tab/images/tab-extend-to-title.png
new file mode 100644
index 000000000..45d88fd6a
Binary files /dev/null and b/active/tab/images/tab-extend-to-title.png differ
diff --git a/active/tab/images/tab-new-window.png b/active/tab/images/tab-new-window.png
new file mode 100644
index 000000000..73d748b7e
Binary files /dev/null and b/active/tab/images/tab-new-window.png differ
diff --git a/active/tab/images/tab-overview.png b/active/tab/images/tab-overview.png
new file mode 100644
index 000000000..dc43db2a7
Binary files /dev/null and b/active/tab/images/tab-overview.png differ
diff --git a/active/tab/tabcontrol.md b/active/tab/tabcontrol.md
new file mode 100644
index 000000000..42f6be7e6
--- /dev/null
+++ b/active/tab/tabcontrol.md
@@ -0,0 +1,637 @@
+
+
+
+
+# Background
+
+
+
+
+
+
+
+
+
+
+> See [proposal document](https://github.com/Microsoft/microsoft-ui-xaml/issues/304) for more background
+
+The TabView control is a way to display a set of tabs and their respective content. Tab controls are useful for displaying several pages (or documents) of content while giving a user the capability to rearrange, open, or close new tabs.
+
+![An app showing a TabView](images/tab-overview.png)
+
+Tab-like UI comes in two distinct styles that affect not only the visualization of the control, but also the user experience:
+* Static tabs
+ * Generally display a set number of pages
+ * User can change between pages, but cannot open new pages, close pages, or rearrange pages
+* Document tabs
+ * Display a variable number of pages
+ * User can add, remove, and rearrange pages
+ * User can "tear off" tabs into their own window or "recombine" tabs from one group into another group
+
+The Xaml platform already provides several controls to represent "static-style tabs" including [Pivot](https://docs.microsoft.com/en-us/windows/uwp/design/controls-and-patterns/pivot) and top [NavigationView](https://docs.microsoft.com/en-us/windows/uwp/design/controls-and-patterns/navigationview#display-modes). However, these controls do not well support "document-style" tabs due to a variety of limitations, including:
+* Significant effort up to (and including) retemplating to build simple tabs
+* No built-in support for closing tabs
+* No built-in support for drag/drop into new windows
+* No built-in support for moving a tab from a window and combining it with another window
+* Limited keyboard and accessibility support
+
+This spec therefore covers "document-style tabs" specifically as this platform gap isn't easily solved with an app-side workaround.
+
+# Description
+
+
+TabView is a collection of tabs that each represents a new page or document in your app. Use TabView when your app has several pages of content and the user expects to be able to add, close, and rearrange the pages.
+
+**Is this the right control?**
+
+Use a TabView to help the user manage multiple app pages or documents within the same window.
+
+Do not use a TabView to display a static set of tabs that the user cannot rearrange, open, or close. Use a Pivot or top NavigationView instead.
+
+# Examples
+
+
+
+
+## Basic TabView Sample, similar to a Web Browser
+
+``` xml
+
+```
+
+``` csharp
+// Add a new Tab to the TabView
+private void Tabs_AddTabButtonClick(TabView sender, TabViewAddTabButtonClickEventArgs e)
+{
+ var newTab = new TabViewItem();
+ newTab.IconSource = new SymbolIconSource() { Symbol = Symbol.Document };
+ newTab.Header = "New Document";
+
+ // The Content of a TabViewItem is often a frame which hosts a page.
+ Frame frame = new Frame();
+ newTab.Content = frame;
+ frame.Navigate(typeof(BaconIpsumPage));
+
+ sender.TabItems.Add(newTab);
+}
+
+// Remove the requested tab from the TabView
+private void Tabs_TabCloseRequested(TabView sender, TabViewTabCloseRequestedEventArgs args)
+{
+ sender.TabItems.Remove(args.Tab);
+}
+```
+
+## Put TabView in the titlebar area
+
+![A sample app that shows how TabView can extend into the titlebar area](images/tab-extend-to-title.png)
+
+This sample demonstrates how to extend the TabView into the title bar area and also specify a portion of the UI as the draggable region, using [CoreApplicationViewTitleBar.ExtendViewIntoTitleBar](https://docs.microsoft.com/uwp/api/Windows.ApplicationModel.Core.CoreApplicationViewTitleBar.ExtendViewIntoTitleBar). Per the [titlebar customization guidelines](https://docs.microsoft.com/en-us/windows/uwp/design/shell/title-bar), we must set a [specific drag region](https://docs.microsoft.com/en-us/windows/uwp/design/shell/title-bar#draggable-regions) (the space that a user can use to drag the window around the screen using mouse or touch). If we don't specify the drag region, the entire titlebar area remains draggable (meaning input won't be routed to the tabs, making the tabs unclickable).
+
+``` xml
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+```
+
+``` csharp
+// Customize the titlebar area using the guidance from here: https://docs.microsoft.com/en-us/windows/uwp/design/shell/title-bar
+public MainPage()
+{
+ this.InitializeComponent();
+
+ var coreTitleBar = CoreApplication.GetCurrentView().TitleBar;
+ coreTitleBar.ExtendViewIntoTitleBar = true;
+ coreTitleBar.LayoutMetricsChanged += CoreTitleBar_LayoutMetricsChanged;
+
+ Window.Current.SetTitleBar(CustomDragRegion);
+}
+
+private void CoreTitleBar_LayoutMetricsChanged(CoreApplicationViewTitleBar sender, object args)
+{
+ // To ensure that the tabs in the titlebar are not occluded by shell
+ // content, we must ensure that we account for left and right overlays.
+ // In LTR layouts, the right inset includes the caption buttons and the
+ // drag region, which is flipped in RTL.
+
+ // The SystemOverlayLeftInset and SystemOverlayRightInset values are
+ // in terms of physical left and right. Therefore, we need to flip
+ // then when our flow direction is RTL.
+ if (FlowDirection == FlowDirection.LeftToRight)
+ {
+ CustomDragRegion.MinWidth = sender.SystemOverlayRightInset;
+ ShellTitlebarInset.MinWidth = sender.SystemOverlayLeftInset;
+ }
+ else
+ {
+ CustomDragRegion.MinWidth = sender.SystemOverlayLeftInset;
+ ShellTitlebarInset.MinWidth = sender.SystemOverlayRightInset;
+ }
+
+ // Ensure that the height of the custom regions are the same as the titlebar.
+ CustomDragRegion.Height = ShellTitlebarInset.Height = sender.Height;
+}
+```
+
+## Create a new window when tearing out tabs
+
+![An example picture showing that TabView can be torn out and moved to its own window.](images/tab-new-window.png)
+
+There are different ways that content can be hosted inside an app. The [Show multiple views for an app](https://docs.microsoft.com/en-us/windows/uwp/design/layout/show-multiple-views) documentation outlines the various technologies for displaying multiple views or windows.
+
+The example below uses AppWindow, which is available starting in Windows 10, version 1903 (SDK 18362). AppWindow simplifies the creation of multi-window UWP apps because it operates on the same UI thread that it's created from. The complete TabView + AppWindow sample can be found in the [Xaml Controls Gallery](https://github.com/microsoft/Xaml-Controls-Gallery/blob/w/stmoy/TabViewPreview/XamlControlsGallery/TabViewPages/TabViewWindowingSamplePage.xaml.cs).
+
+If your app targets Windows 10 versions less than 1903, you will need to use CoreWindow/ApplicationView. The Windows Community Toolkit [TabView tear out sample](https://github.com/windows-toolkit/Sample-TabView-TearOff/tree/master/TabViewTear) demonstrates how to create a multi-window application using CoreWindow/ApplicationView.
+
+
+``` xml
+
+```
+``` csharp
+// NOTE: The app is responsible for writing this code. A full sample can be found in the Xaml Controls Gallery.
+private async void TabView_TabDroppedOutside(TabView sender, TabDroppedOutsideEventArgs e)
+{
+ // Create a new AppWindow
+ AppWindow newWindow = await AppWindow.TryCreateAsync();
+
+ // Create the content for the new window
+ var newPage = new MainPage();
+
+ // Remove tab from existing list
+ Tabs.TabItems.Remove(e.Tab);
+
+ // Add tab to list of Tabs on new page
+ newPage.AddItemToTabs(e.Tab);
+
+ // Set the Window's content to the new page
+ ElementCompositionPreview.SetAppWindowContent(newWindow, newPage);
+
+ // Show the window
+ await newWindow.TryShowAsync();
+}
+```
+
+## Databind to a set of tabs
+
+``` xml
+
+```
+
+## Implement browser-style keyboarding behavior
+
+The below example shows how to use KeyboardAccelerators to enable the following experiences:
+* Open a new tab with CTRL+T
+* Close the selected tab with CTRL+W
+* Change the selected tab with CTRL+1 through CTRL+8
+* Select the last tab with CTRL+9
+
+``` xml
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+```
+
+``` csharp
+
+private void NewTabKeyboardAccelerator_Invoked(KeyboardAccelerator sender, KeyboardAcceleratorInvokedEventArgs args)
+{
+ // See previous sample
+ CreateNewTab();
+}
+
+private void CloseSelectedTabKeyboardAccelerator_Invoked(KeyboardAccelerator sender, KeyboardAcceleratorInvokedEventArgs args)
+{
+ // Only close the selected tab if it is closeable
+ if (((TabViewItem)TabRoot.SelectedItem).IsCloseable)
+ {
+ TabRoot.TabItems.Remove(TabRoot.SelectedItem);
+ }
+}
+
+private void NavigateToNumberedTabKeyboardAccelerator_Invoked(KeyboardAccelerator sender, KeyboardAcceleratorInvokedEventArgs args)
+{
+ int tabToSelect = 0;
+
+ switch (sender.Key)
+ {
+ case Windows.System.VirtualKey.Number1:
+ tabToSelect = 0;
+ break;
+ case Windows.System.VirtualKey.Number2:
+ tabToSelect = 1;
+ break;
+ case Windows.System.VirtualKey.Number3:
+ tabToSelect = 2;
+ break;
+ case Windows.System.VirtualKey.Number4:
+ tabToSelect = 3;
+ break;
+ case Windows.System.VirtualKey.Number5:
+ tabToSelect = 4;
+ break;
+ case Windows.System.VirtualKey.Number6:
+ tabToSelect = 5;
+ break;
+ case Windows.System.VirtualKey.Number7:
+ tabToSelect = 6;
+ break;
+ case Windows.System.VirtualKey.Number8:
+ tabToSelect = 7;
+ break;
+ case Windows.System.VirtualKey.Number9:
+ // Select the last tab
+ tabToSelect = TabRoot.TabItems.Count - 1;
+ break;
+ }
+
+ // Only select the tab if it is in the list
+ if (tabToSelect < TabRoot.TabItems.Count)
+ {
+ TabRoot.SelectedIndex = tabToSelect;
+ }
+}
+
+```
+
+# Remarks
+
+
+## Parts of a TabView
+![Position of TabStripHeader and TabStripFooter](images/tab-control-parts-1.PNG)
+
+![Parts of a tab item](images/tab-control-parts-2.PNG)
+
+## Keyboard guidance for App Developers
+The [Appendix/Detailed Keyboarding Behavior](#detailed-keyboarding-behavior) section outlines built-in keyboarding behavior provided by the TabView. This section discusses specific recommendations to extend the keyboarding functionality for your app.
+
+* If your app does not already handle the CTRL+T shortcut, consider using it to open a new tab.
+* If your app does not already handle the CTRL+W shortcut, consider using it to close the selected tab.
+* Consider maintaining a list of recently closed Tabs. If the user presses CTRL+SHIFT+T, they expect recently closed tabs to be reopened.
+* Modern browsers support selecting tabs when pressing CTRL and a number. Consider handling Ctrl+1 through 8, which should select that number Tab. Additionally, you can consider handling Ctrl+9 which selects the last tab (regardless of the number of tabs).
+* If users can perform more commands on a Tab than just closing the Tab (for example, pinning a Tab or duplicating a Tab), consider adding a context menu to the TabViewItem.
+
+## Tab Strip Overflow
+What happens when too many tabs appear in the tab strip? The TabView control resizes the tabs and provides a scrollbar so the app doesn't need to. The behavior is slightly different depending on the value of the TabView.TabWidthMode property.
+
+| TabWidthMode Value | Behavior |
+|:-------- |:----------- |
+| Equal | The tabs get narrower to a min width and then bumpers appear and allow for horizontal scrolling. |
+| SizeToContent | The tabs do not get narrower than their natural size, but bumpers will appear and allow for horizontal scrolling. |
+
+## Guidance for Tab selection
+* Users expect that a tab is selected by default. Ensure that a TabViewItem is initially selected when TabView is created by setting the SelectedItem or SelectedIndex.
+* The TabView will attempt to ensure that a tab is selected if the previously selected Tab is closed. By default, the TabView will select the next tab item if it is enabled.
+* If no tab is selected, the main content area of the TabView will appear blank.
+
+# API Notes
+
+
+### TabView properties, events, methods
+
+| Property | Description |
+|:-------- |:----------- |
+| AddTabButtonCommand | Gets or sets the command to invoke when the Add button is tapped. |
+| AddTabButtonCommandParameter | Gets or sets the parameter to pass to the command for the Add button. |
+| CanDragTabs | Gets or sets a value that indicates whether tabs in the collection can be dragged. Default is true. |
+| CanReorderTabs | Gets or sets a value that indicates whether tabs in the collection can be reordered through user interaction. Default is true. |
+| IsAddTabButtonVisible | Determines if the plus button appears to the right of the tab strip |
+| TabItemsSource | Gets or sets an object source used to generate the tabs. |
+| TabItems | Gets the collection used to generate the tabs. |
+| TabItemTemplate | Gets or sets the DataTemplate used to display the TabViewItem. |
+| TabItemTemplateSelector | Gets or sets a reference to a custom DataTemplateSelector logic class. The DataTemplateSelector referenced by this property returns a template to apply to items. |
+| SelectedIndex | Gets or sets the index of the selected item. |
+| SelectedItem | Gets or sets the selected item. |
+| TabStripHeader | Content to the left of the tab strip. |
+| TabStripFooter | Content to the right of the tab strip. |
+| TabWidthMode | Specifies how the tabs should be sized. Values are {Equal, SizeToContent}. Default is Equal. |
+
+| Event | Description |
+|---|---|
+| AddTabButtonClick | Raised when the + button is clicked. |
+| SelectionChanged | Occurs when the currently selected tab changes. |
+| TabCloseRequested | Raised when the user attempts to close a Tab via clicking the x-to-close, CTRL+F4, or mousewheel. |
+| TabDroppedOutside | Raised when a Tab is dropped outside of the Tab bar. |
+
+| Method | Description |
+|---|---|
+| DependencyObject ContainerFromItem(object item) | Returns the generated container for the specified item. |
+| DependencyObject ContainerFromIndex(Int32 index) | Returns the generated container for the specified index. |
+
+### TabViewItem properties and events
+
+| Property | Description |
+|:-------- |:----------- |
+| Content | The content that appears inside the TabView's content area when the TabViewItem is selected. |
+| Header | The content that appears inside the tab strip to represent the tab. |
+| HeaderTemplate | Template for the header object. |
+| Icon | Icon for the tab. |
+| IsCloseable | Determines if the tab shows a close button. Default is "True". |
+
+| Event | Description |
+|---|---|
+| TabCloseRequested | Raised when a tab's close button is clicked. |
+
+# API Details
+
+
+```
+namespace MU_XC_NAMESPACE
+{
+
+[WUXC_VERSION_MUXONLY]
+[webhosthidden]
+enum TabViewWidthMode
+{
+ Equal = 0,
+ SizeToContent = 1,
+};
+
+[WUXC_VERSION_MUXONLY]
+[webhosthidden]
+runtimeclass TabViewTabCloseRequestedEventArgs
+{
+ Object Item { get; };
+ TabViewItem Tab { get; };
+}
+
+[WUXC_VERSION_MUXONLY]
+[webhosthidden]
+runtimeclass TabViewTabDroppedOutsideEventArgs
+{
+ Object Item { get; };
+ TabViewItem Tab { get; };
+}
+
+[WUXC_VERSION_MUXONLY]
+[webhosthidden]
+runtimeclass TabViewTabDragStartingEventArgs
+{
+ Boolean Cancel { get; set; };
+ Windows.ApplicationModel.DataTransfer.DataPackage Data { get; };
+ Object Item { get; };
+ TabViewItem Tab { get; };
+}
+
+[WUXC_VERSION_MUXONLY]
+[webhosthidden]
+runtimeclass TabViewTabDragCompletedEventArgs
+{
+ Windows.ApplicationModel.DataTransfer.DataPackageOperation DropResult { get; };
+ Object Item { get; };
+ TabViewItem Tab { get; };
+}
+
+[WUXC_VERSION_MUXONLY]
+[webhosthidden]
+unsealed runtimeclass TabView : Windows.UI.Xaml.Controls.Control
+{
+ TabView();
+
+ [MUX_DEFAULT_VALUE("winrt::TabViewWidthMode::Equal")]
+ [MUX_PROPERTY_CHANGED_CALLBACK(TRUE)]
+ TabViewWidthMode TabWidthMode{ get; set; };
+
+ Object TabStripHeader{ get; set; };
+ Windows.UI.Xaml.DataTemplate TabStripHeaderTemplate{ get; set; };
+
+ Object TabStripFooter{ get; set; };
+ Windows.UI.Xaml.DataTemplate TabStripFooterTemplate{ get; set; };
+
+ [MUX_DEFAULT_VALUE("true")]
+ Boolean IsAddTabButtonVisible{ get; set; };
+ Windows.UI.Xaml.Input.ICommand AddTabButtonCommand{ get; set; };
+ Object AddTabButtonCommandParameter{ get; set; };
+
+ event Windows.Foundation.TypedEventHandler TabCloseRequested;
+
+ event Windows.Foundation.TypedEventHandler TabDroppedOutside;
+
+ event Windows.Foundation.TypedEventHandler AddTabButtonClick;
+
+ // From ListView
+ Object TabItemsSource;
+ Windows.Foundation.Collections.IVector