Files
EgtDOORCreator/CompoPanel/CompoPanelView.xaml
T
Dario Sassi ee575750da EgtDOORCreator :
- primo salvataggio.
2017-01-11 14:42:25 +00:00

14 lines
474 B
XML

<UserControl x:Class="CompoPanelView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ItemsControl ItemsSource="{Binding CompoBtnList}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button Content="{Binding Name}" Command="{Binding CompoBtnCommand}"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</UserControl>