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