ee575750da
- primo salvataggio.
14 lines
474 B
XML
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>
|