2

这是我的代码:

<ControlTemplate TargetType="{x:Type ToggleButton}">
    <Border x:Name="Chrome">
        <Grid x:Name="Arrow">
            <Grid.Background>
                <DrawingBrush Viewport="0,0,4,4" Viewbox="0,-0.4,16,16" ViewboxUnits="Absolute">
                    <DrawingBrush.Drawing>
                        <GeometryDrawing x:Name="ArrowDrawing">
                            <GeometryDrawing.Geometry>
                                <PathGeometry>
                                    <PathFigure StartPoint="1,1" IsClosed="True">
                                        <LineSegment Point="2,2.45"/>
                                        <LineSegment Point="3,1"/>
                                        <LineSegment Point="2,1.75"/>
                                    </PathFigure>
                                </PathGeometry>
                            </GeometryDrawing.Geometry>
                        </GeometryDrawing>
                    </DrawingBrush.Drawing>
                </DrawingBrush>
            </Grid.Background>
        </Grid>
    </Border>
    <ControlTemplate.Triggers>
        <Trigger Property="IsEnabled" Value="False">
            <Setter Property="Brush" TargetName="ArrowDrawing" Value="{StaticResource DisabledForecolor}"/>
        </Trigger>
    </ControlTemplate.Triggers>
</ControlTemplate>

所以当触发器触发时(在编译时),我得到了错误:

Cannot find the Trigger target 'ArrowDrawing'. (The target must appear before any Setters, Triggers, or Conditions that use it.)

我如何实际访问从触发器GeometryDrawing命名的?ArrowDrawing

4

2 回答 2

3

实际上有两种方法可以实现这一点,一种是使用绑定:

Storyboard.Target="{Binding ElementName=ContentPopup}"

另一种是使用 XAML 内部引用:

Storyboard.Target="{x:Reference Name=ContentPopup}"

同样的答案在这里

于 2014-02-06T16:13:24.810 回答
2

这篇文章可能会有所帮助

不过,有一种方法可以通过使用数据绑定来解决这个问题。使用 Binding,您可以找到从画笔到元素的方法,然后 Setter 可以定位该元素。

于 2011-05-23T12:42:39.560 回答