Files
bluflame/intromat/Intromat/Views/GroupSubnetIONodeView.xaml
2026-04-18 22:31:51 +02:00

24 lines
1.3 KiB
XML

<UserControl x:Class="Intromat.Views.GroupSubnetIONodeView"
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:views="clr-namespace:Intromat.Views"
xmlns:addEndpointDropPanel="clr-namespace:NodeNetwork.Toolkit.Group.AddEndpointDropPanel;assembly=NodeNetworkToolkit"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<views:CodeGenNodeView x:Name="NodeView">
<views:CodeGenNodeView.TrailingControlPresenterStyle>
<Style TargetType="ContentPresenter">
<Setter Property="Content" Value="{Binding AddEndpointDropPanelVM}" />
<Setter Property="ContentTemplate">
<Setter.Value>
<DataTemplate>
<addEndpointDropPanel:AddEndpointDropPanelView ViewModel="{Binding }" Margin="0,5,0,0" />
</DataTemplate>
</Setter.Value>
</Setter>
</Style>
</views:CodeGenNodeView.TrailingControlPresenterStyle>
</views:CodeGenNodeView>
</UserControl>