具有 none 背景的 ItemsControl WPF

ItemsControl with none background WPF

想问一下,是否可以让ItemsControl没有背景(x:null),不透明。

我收集了数据,这些在 DataTemplate 的帮助下显示在 ItemsControl 中。 datatemplate 中的一些数据被折叠了,我需要能够点击 itemscontrol 后面的另一个控件。

这是我的意思的例子:

<Button x:Name="bt_behind"></Button>
<ItemsControl ItemsSource="{Binding ListOfData}" Background="{x:Null}">
        <ItemsControl.ItemsPanel>
                <ItemsPanelTemplate>
                    <StackPanel Orientation="Horizontal" Background="{x:Null}"></StackPanel>
                </ItemsPanelTemplate>
            </ItemsControl.ItemsPanel>
            <ItemsControl.ItemTemplate>
                <DataTemplate DataType="{x:Type Class:Data}">
                     <Grid Width="100" Background="{x:Null}">
                          <Rectangle x:Name="rec" Fill="Red" Height="100" Visibility="Collapsed">
                     </Grid>
                     <DataTemplate.Triggers>
                        <DataTrigger Binding="{Binding IsVisible}" Value="true">
                            <Setter TargeName="rec" Property="Visibility" Value="Visible"/>
                        </DataTrigger>
                     <DataTemplate.Triggers>
                </DataTemplate>
            </ItemsControl.ItemTemplate>
</ItemsControl>

Example where item3 is partly collapsed and marked area, where is empty place

我将所有地方的背景设置为空(也尝试使用 itemcontainerstyle),但没有成功。 ItemsControl 后面的按钮仍然不可点击。我认为 ItemsControl 的事件背景是透明的,但是否可以删除此背景?

感谢您的任何建议,对不起我的英语:)

-pav-

好吧,正如我所说,一切正常。固定 XAML:

<Grid>
    <Button x:Name="bt_behind" Content="behind" Click="Bt_behind_OnClick"/>
    <ItemsControl ItemsSource="{Binding ListOfData}" Background="{x:Null}">
        <ItemsControl.ItemsPanel>
            <ItemsPanelTemplate>
                <StackPanel Orientation="Horizontal" Background="{x:Null}"></StackPanel>
            </ItemsPanelTemplate>
        </ItemsControl.ItemsPanel>
        <ItemsControl.ItemTemplate>
            <DataTemplate DataType="{x:Type local:Data}">
                <Grid Width="100" Background="{x:Null}">
                    <Rectangle x:Name="rec" Fill="Red" Height="100" Visibility="Collapsed"/>
                </Grid>
                <DataTemplate.Triggers>
                    <DataTrigger Binding="{Binding IsVisible}" Value="true">
                        <Setter TargetName="rec" Property="Visibility" Value="Visible"/>
                    </DataTrigger>
                </DataTemplate.Triggers>
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ItemsControl>
</Grid>

仅供测试。

private void Bt_behind_OnClick(object sender, RoutedEventArgs e)
{
    MessageBox.Show("");
}