这应该真的很简单。如何将ControlTemplate应用于XAML中的Thumb?

<UserControl.Resources>
    <ControlTemplate x:Key="temp">
        <Ellipse Width="60" Height="30" Fill="Black"/>
    </ControlTemplate>
</UserControl.Resources>
<Grid x:Name="LayoutRoot" Background="White">
    <TextBlock>Not Dragged</TextBlock>
    <Canvas x:Name="foo">
        <Thumb Width="150" Height="50" DragDelta="Thumb_DragDelta" x:Name="simpleDrag">

        </Thumb>
        <TextBlock>Dragged (hopefull)</TextBlock>
    </Canvas>
</Grid>

我不知道如何将“temp”模板应用于Thumb。谢谢!

最佳答案

您将使用 Template 属性:

<Thumb Width="150" ... Template="{StaticResource temp}" />

关于wpf - 在XAML中应用控制模板,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3973781/

10-11 16:36