port from perforce

This commit is contained in:
2026-04-18 22:31:51 +02:00
commit 8d0ab5b7cc
8409 changed files with 3972376 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<ContextMenu x:Class="NodeNetwork.Toolkit.ContextMenu.SearchableContextMenuView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:NodeNetwork.Toolkit.ContextMenu"
xmlns:viewModels="clr-namespace:NodeNetwork.ViewModels;assembly=NodeNetwork"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800" x:Name="self">
<ContextMenu.Resources>
<Style TargetType="{x:Type MenuItem}">
<Style.Setters>
<Setter Property="Command" Value="{Binding Command}"/>
<Setter Property="CommandParameter" Value="{Binding CommandParameter}"/>
</Style.Setters>
</Style>
<DataTemplate DataType="{x:Type local:LabeledCommand}">
<TextBlock><Run Text="{Binding Label}"/></TextBlock>
</DataTemplate>
</ContextMenu.Resources>
<ContextMenu.ItemsSource>
<CompositeCollection>
<MenuItem x:Name="SearchMenuItem" StaysOpenOnClick="True">
<MenuItem.Header>
<TextBox x:Name="SearchTextBox" MinWidth="150"></TextBox>
</MenuItem.Header>
</MenuItem>
<CollectionContainer x:Name="CollectionContainer"/>
<Separator/>
<CollectionContainer x:Name="ContainerBelowSearch"/>
</CompositeCollection>
</ContextMenu.ItemsSource>
</ContextMenu>