1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
<ListBox Margin="18,29,0,31" x:Name="listBox1" HorizontalAlignment="Left" Width="406">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Vertical">
<TextBlock Text="{Binding Nom}" FontSize="15"/>
<my:WindowsFormsHost HorizontalAlignment="Right" Name="windowsFormsHost1" xmlns:my="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration">
<swf:PropertyGrid />
</my:WindowsFormsHost>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
|
Partager