0

カスタム プロパティを持つカスタム コントロールがありますVectorImage

これは のコンテンツとして使用ViewBoxされるスタイルです:VectorImageLabel

<Style x:Key="Button-SidePanel" TargetType="c:CustomButton">
    <Setter Property="VectorImage" Value="{StaticResource VectoroImage_1}"/>
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type c:CustomButton}">
                <Border x:Name="border" SnapsToDevicePixels="True">
                    <Grid>
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="*"></ColumnDefinition> 
                            <ColumnDefinition Width="40"/>
                        </Grid.ColumnDefinitions>
                        <ContentPresenter Grid.Column="0" Grid.Row="0" x:Name="contentPresenter" ContentTemplate="{TemplateBinding ContentTemplate}" Content="{TemplateBinding Content}" ContentStringFormat="{TemplateBinding ContentStringFormat}" Focusable="False" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" />
                        <Label x:Name="ButtonImage" Grid.Column="1" Grid.Row="0" Width="30" Height="30" Margin="0,0,10,0" Content="{TemplateBinding VectorImage}" />
                    </Grid>
                </Border>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

ここにこれを使用するボタンがありますStyle:

<c:CustomButton x:Name="Button_1" Content="Bt1" Style="{StaticResource Button-SidePanel}" />
<c:CustomButton x:Name="Button_2" Content="Bt2" Style="{StaticResource Button-SidePanel}" />
<c:CustomButton x:Name="Button_3" Content="Bt3" Style="{StaticResource Button-SidePanel}" />
<c:CustomButton x:Name="Button_4" Content="Bt4" Style="{StaticResource Button-SidePanel}" />

ただし、最後の項目のみがコンテンツButton_4を表示しLabelます (ベクター画像のビューボックス)。を削除するButton_4と、コンテンツButton_3が表示されLabelます。

SOLUTION:

DataTemplateを使用して ContentTemplate Answer を設定します。

DataTemplate 内のスタイルは、ItemsControl の最後の項目にのみ適用されていますか?

4

0 に答える 0