Skip to content

Commit e4e06cb

Browse files
author
msftbot[bot]
authored
Updated TabbedCommandBar for WinUI 2.6 (#4132)
## Fixes #4085 Previously, `TabbedCommandBar` used the system XAML `NavigationView`, but this doesn't work on WinUI 3. This PR makes the control functional on WinUI 2.6+ and 3.x, albeit with a few style issues (which will be fixed either in this PR or a later one). ## PR Type What kind of change does this PR introduce? Bugfix Refactoring (no functional changes, no api changes) ## What is the current behavior? See #4085 ## What is the new behavior? - `TabbedCommandBar` now inherits from MUXC `NavigationView` and uses 2.6 styles - `Normal*` and `ContextualTabTemplate` now use MUXC `NavigationViewItem` ## PR Checklist Please check if your PR fulfills the following requirements: - [ ] Tested code with current [supported SDKs](../readme.md#supported) - [ ] Tests for the changes have been added (for bug fixes / features) (if applicable) - [x] Contains **NO** breaking changes
2 parents 935875a + ebcdf29 commit e4e06cb

File tree

5 files changed

+454
-382
lines changed

5 files changed

+454
-382
lines changed

Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TabbedCommandBar/TabbedCommandBar.bind

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@
1414
<RowDefinition/>
1515
</Grid.RowDefinitions>
1616

17-
<controls:TabbedCommandBar>
17+
<controls:TabbedCommandBar> <!-- IsBackButtonVisible="Visible" -->
18+
<controls:TabbedCommandBar.AutoSuggestBox>
19+
<AutoSuggestBox QueryIcon="Find" AutomationProperties.Name="Search" />
20+
</controls:TabbedCommandBar.AutoSuggestBox>
1821
<controls:TabbedCommandBar.PaneFooter>
1922
<CommandBar Background="Transparent" DefaultLabelPosition="Right">
2023
<AppBarButton Label="Share" Icon="Share"/>

Microsoft.Toolkit.Uwp.UI.Controls.Core/TabbedCommandBar/TabbedCommandBar.cs

+13-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
using Windows.UI.Xaml;
77
using Windows.UI.Xaml.Controls;
88
using Windows.UI.Xaml.Markup;
9-
using Windows.UI.Xaml.Media;
109
using Windows.UI.Xaml.Media.Animation;
10+
using NavigationView = Microsoft.UI.Xaml.Controls.NavigationView;
11+
using NavigationViewSelectionChangedEventArgs = Microsoft.UI.Xaml.Controls.NavigationViewSelectionChangedEventArgs;
1112

1213
namespace Microsoft.Toolkit.Uwp.UI.Controls
1314
{
@@ -36,8 +37,10 @@ public class TabbedCommandBar : NavigationView
3637
public TabbedCommandBar()
3738
{
3839
DefaultStyleKey = typeof(TabbedCommandBar);
40+
DefaultStyleResourceUri = new System.Uri("ms-appx:///Microsoft.Toolkit.Uwp.UI.Controls.Core/Themes/Generic.xaml");
3941

4042
SelectionChanged += SelectedItemChanged;
43+
Loaded += TabbedCommandBar_Loaded;
4144
}
4245

4346
/// <inheritdoc/>
@@ -55,6 +58,15 @@ protected override void OnApplyTemplate()
5558
_tabbedCommandBarContentBorder = GetTemplateChild("PART_TabbedCommandBarContentBorder") as Border;
5659
_tabChangedStoryboard = GetTemplateChild("TabChangedStoryboard") as Storyboard;
5760

61+
// TODO: We could maybe optimize and use a lower-level Loaded event for what's hosting the MenuItems
62+
// to set SelectedItem, but then we may have to pull in another template part, so think we're OK
63+
// to do the Loaded event at the top level.
64+
}
65+
66+
private void TabbedCommandBar_Loaded(object sender, RoutedEventArgs e)
67+
{
68+
// We need to select the item after the template is realized, otherwise the SelectedItem's
69+
// DataTemplate bindings don't properly navigate the visual tree.
5870
SelectedItem = MenuItems.FirstOrDefault();
5971
}
6072

0 commit comments

Comments
 (0)