Please advise. Command binding on the button fires if I click on any text block or image that comes from the Content Control. But if I click on any empty area it doesn't fire.
<ItemsControl x:Name="Name"Grid.Column="0"
ItemsSource="{Binding Source}"
VerticalContentAlignment="Stretch"
Margin="5">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<UniformGrid Columns="2"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button x:Name="Button" Command="{Binding DataContext.PauseCommand,
RelativeSource={RelativeSource FindAncestor,AncestorType=UserControl}}"
CommandParameter="{Binding}">
<Button.Style>
<Style TargetType="Button">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<ContentControl Content="{Binding}" ContentTemplate="{StaticResource BindableTemplate}"/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Button.Style>
</Button>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>