Skip to content

Commit 3427f41

Browse files
committed
Removed unused Footer property on TabbedCommandBarItem
1 parent d1fc7e5 commit 3427f41

File tree

2 files changed

+0
-21
lines changed

2 files changed

+0
-21
lines changed

Microsoft.Toolkit.Uwp.UI.Controls/TabbedCommandBar/TabbedCommandBar.xaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,6 @@
7777
<ItemsStackPanel Orientation="Horizontal" />
7878
</ItemsPanelTemplate>
7979
</NavigationViewList.ItemsPanel>
80-
<NavigationViewList.ItemContainerTransitions>
81-
<TransitionCollection />
82-
</NavigationViewList.ItemContainerTransitions>
8380
</NavigationViewList>
8481
<Button x:Name="TopNavOverflowButton"
8582
Grid.Column="4"

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

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -43,24 +43,6 @@ public object Header
4343
set => SetValue(HeaderProperty, value);
4444
}
4545

46-
/// <summary>
47-
/// Identifies the <see cref="Footer"/> property.
48-
/// </summary>
49-
public static readonly DependencyProperty FooterProperty = DependencyProperty.Register(
50-
nameof(Footer),
51-
typeof(UIElement),
52-
typeof(TabbedCommandBarItem),
53-
new PropertyMetadata(new Border()));
54-
55-
/// <summary>
56-
/// Gets or sets the <see cref="UIElement"/> to be displayed in the footer of the tab.
57-
/// </summary>
58-
public UIElement Footer
59-
{
60-
get => (UIElement)GetValue(FooterProperty);
61-
set => SetValue(FooterProperty, value);
62-
}
63-
6446
/// <summary>
6547
/// Identifies the <see cref="IsContextual"/> property.
6648
/// </summary>

0 commit comments

Comments
 (0)