@@ -556,6 +556,7 @@ public static List<ContextMenuFlyoutItemViewModel> GetBaseLayoutMenuItems(Curren
556
556
Text = "PinItemToStart/Text" . GetLocalizedResource ( ) ,
557
557
Glyph = "\uE840 " ,
558
558
Command = commandsViewModel . PinItemToStartCommand ,
559
+ ShowInRecycleBin = true ,
559
560
ShowInFtpPage = true ,
560
561
ShowOnShift = true ,
561
562
ShowItem = itemViewModel . CurrentFolder is not null && ! itemViewModel . CurrentFolder . IsItemPinnedToStart ,
@@ -565,6 +566,7 @@ public static List<ContextMenuFlyoutItemViewModel> GetBaseLayoutMenuItems(Curren
565
566
Text = "UnpinItemFromStart/Text" . GetLocalizedResource ( ) ,
566
567
Glyph = "\uE77A " ,
567
568
Command = commandsViewModel . UnpinItemFromStartCommand ,
569
+ ShowInRecycleBin = true ,
568
570
ShowInFtpPage = true ,
569
571
ShowOnShift = true ,
570
572
ShowItem = itemViewModel . CurrentFolder is not null && itemViewModel . CurrentFolder . IsItemPinnedToStart ,
@@ -981,6 +983,7 @@ public static List<ContextMenuFlyoutItemViewModel> GetBaseItemMenuItems(BaseLayo
981
983
Command = commandsViewModel . PinItemToStartCommand ,
982
984
ShowOnShift = true ,
983
985
ShowItem = selectedItems . All ( x => ! x . IsShortcut && ( x . PrimaryItemAttribute == StorageItemTypes . Folder || x . IsExecutable ) && ! x . IsArchive && ! x . IsItemPinnedToStart ) ,
986
+ ShowInRecycleBin = true ,
984
987
ShowInSearchPage = true ,
985
988
ShowInFtpPage = true ,
986
989
SingleItemOnly = true ,
@@ -992,6 +995,7 @@ public static List<ContextMenuFlyoutItemViewModel> GetBaseItemMenuItems(BaseLayo
992
995
Command = commandsViewModel . UnpinItemFromStartCommand ,
993
996
ShowOnShift = true ,
994
997
ShowItem = selectedItems . All ( x => ! x . IsShortcut && ( x . PrimaryItemAttribute == StorageItemTypes . Folder || x . IsExecutable ) && ! x . IsArchive && x . IsItemPinnedToStart ) ,
998
+ ShowInRecycleBin = true ,
995
999
ShowInSearchPage = true ,
996
1000
ShowInFtpPage = true ,
997
1001
SingleItemOnly = true ,
0 commit comments