cb84da03cd
- Inserimento della guida
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<UserControl x:Class="CompoPanelView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<UserControl.InputBindings>
|
|
<KeyBinding Key="Enter" Command="{Binding RefreshCmd}"/>
|
|
</UserControl.InputBindings>
|
|
|
|
<ItemsControl ItemsSource="{Binding CompoTypeList}" Focusable="True">
|
|
|
|
<ItemsControl.InputBindings>
|
|
<KeyBinding Key="Enter" Command="{Binding RefreshCmd}"/>
|
|
</ItemsControl.InputBindings>
|
|
|
|
<ItemsControl.ItemsPanel>
|
|
<ItemsPanelTemplate>
|
|
<UniformGrid Columns="1"/>
|
|
</ItemsPanelTemplate>
|
|
</ItemsControl.ItemsPanel>
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate>
|
|
<Button Name="Compo" Content="{Binding Name}"
|
|
Command="{Binding DataContext.CompoBtnCommand,
|
|
RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}"
|
|
CommandParameter="{Binding}"
|
|
Focusable="False"/>
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
|
|
</UserControl>
|