11namespace DevWinUI ;
2- internal partial class NavItemIconHelper
2+ public partial class StoreNavigationViewItemAttach
33{
44 public static object GetSelectedIcon ( DependencyObject obj )
55 {
@@ -12,7 +12,7 @@ public static void SetSelectedIcon(DependencyObject obj, object value)
1212 }
1313
1414 public static readonly DependencyProperty SelectedIconProperty =
15- DependencyProperty . RegisterAttached ( "SelectedIcon" , typeof ( object ) , typeof ( NavItemIconHelper ) , new PropertyMetadata ( null ) ) ;
15+ DependencyProperty . RegisterAttached ( "SelectedIcon" , typeof ( object ) , typeof ( StoreNavigationViewItemAttach ) , new PropertyMetadata ( null ) ) ;
1616
1717 /// <summary>
1818 /// Gets the value of <see cref="ShowNotificationDotProperty" /> for a <see cref="DependencyObject" />
@@ -35,7 +35,7 @@ public static void SetShowNotificationDot(DependencyObject obj, bool value)
3535 /// An attached property that sets whether or not a notification dot should be shown on an associated <see cref="Microsoft.UI.Xaml.Controls.NavigationViewItem" />
3636 /// </summary>
3737 public static readonly DependencyProperty ShowNotificationDotProperty =
38- DependencyProperty . RegisterAttached ( "ShowNotificationDot" , typeof ( bool ) , typeof ( NavItemIconHelper ) , new PropertyMetadata ( false ) ) ;
38+ DependencyProperty . RegisterAttached ( "ShowNotificationDot" , typeof ( bool ) , typeof ( StoreNavigationViewItemAttach ) , new PropertyMetadata ( false ) ) ;
3939
4040 /// <summary>
4141 /// Gets the value of <see cref="UnselectedIconProperty"/> for a <see cref="DependencyObject"/>
@@ -58,7 +58,7 @@ public static void SetUnselectedIcon(DependencyObject obj, object value)
5858 /// An attached property that sets the unselected icon on an associated <see cref="Microsoft.UI.Xaml.Controls.NavigationViewItem" />
5959 /// </summary>
6060 public static readonly DependencyProperty UnselectedIconProperty =
61- DependencyProperty . RegisterAttached ( "UnselectedIcon" , typeof ( object ) , typeof ( NavItemIconHelper ) , new PropertyMetadata ( null ) ) ;
61+ DependencyProperty . RegisterAttached ( "UnselectedIcon" , typeof ( object ) , typeof ( StoreNavigationViewItemAttach ) , new PropertyMetadata ( null ) ) ;
6262
6363 public static Visibility GetStaticIconVisibility ( DependencyObject obj )
6464 {
@@ -74,5 +74,5 @@ public static void SetStaticIconVisibility(DependencyObject obj, Visibility valu
7474 /// An attached property that sets the visibility of the static icon in the associated <see cref="Microsoft.UI.Xaml.Controls.NavigationViewItem"/>.
7575 /// </summary>
7676 public static readonly DependencyProperty StaticIconVisibilityProperty =
77- DependencyProperty . RegisterAttached ( "StaticIconVisibility" , typeof ( Visibility ) , typeof ( NavItemIconHelper ) , new PropertyMetadata ( Visibility . Collapsed ) ) ;
77+ DependencyProperty . RegisterAttached ( "StaticIconVisibility" , typeof ( Visibility ) , typeof ( StoreNavigationViewItemAttach ) , new PropertyMetadata ( Visibility . Collapsed ) ) ;
7878}
0 commit comments