0

我正在创建一个从 ItemsControl 派生的自定义控件,现在我遇到了一个问题。当我尝试在示例中设置控件的背景时,它不起作用。下面是控件的代码:

<!--Parent-->
<Style TargetType="{x:Type local:Parent}">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type local:Parent}">
                <Border Background="{TemplateBinding Background}"
                        BorderBrush="{TemplateBinding BorderBrush}"
                        BorderThickness="{TemplateBinding BorderThickness}">
                    <ScrollViewer>  
                        <ItemsPresenter/>
                    </ScrollViewer>
                </Border>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

<!--MainChild-->

<Style TargetType="{x:Type local:MainChild}">
    <Setter Property="Height" Value="430"/>
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type local:MainChild}">
                <Border Background="{TemplateBinding Background}"
                        BorderBrush="{TemplateBinding BorderBrush}"
                        BorderThickness="{TemplateBinding BorderThickness}">
                    <ItemsPresenter />
                </Border>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

<!--InnerChild-->
<Style TargetType="{x:Type local:InnerChild}">
    <Setter Property="Width" Value="100"/>
    <Setter Property="Height" Value="100"/>
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type local:InnerChild}">
                --------------------------------------
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

我的自定义控件的基本控件是

Parent-ItemsControl MainChild-ItemsControl InnerChild-ContentControl

在我的示例中,我尝试将背景设置如下:

<local:Parent Background="Yellow" >
        <local:MainChild Background="Green">
            <local:InnerChild Content="Item1" Background="#FF008C00"/>
        </local:MainChild>
</local:Parent>

对于从 ItemsControl 派生的两个元素,背景属性都不起作用。

欢迎任何建议。

4

1 回答 1

0

我也尝试过这样做,但我看不出它为什么不起作用的问题。所以等着看你的 Parent 和 MainChild 类的样子,你可以做一些事情:

  1. 在 xaml 中为控件添加边距。您的内在小孩可能会占用所有空间,因此您实际上看不到项目控件的背景颜色(请参见下面的 nr1)。
  2. 命名您的控件并尝试在代码中获取背景(参见下面的 nr2)。

所以试试nr1:

<local:Parent Background="Yellow" >
    <local:MainChild Margin="20" Background="Green">
        <local:InnerChild Content="Item1" Background="#FF008C00"/>
    </local:MainChild>
</local:Parent>

或尝试 nr2:

Dim brush As SolidColorBrush = CType(icParent.Background, SolidColorBrush)
于 2013-06-19T09:57:43.620 回答