ControlTemplate导致错误“属性'内容'被设置多次”

时间:2012-05-22 16:20:37

标签: c# wpf controltemplate

我只是第一次尝试将ControlTemplate用于我想要创建的按钮。

但是,只要我将标记<ControlTemplate>放在任何地方,就会出现错误。

<Window x:Class="MAQButtonTest.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="695" Width="996">        
    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="300" />
            <ColumnDefinition />
        </Grid.ColumnDefinitions>
        <Grid Grid.Column="0" Background="#FFE9F1F6"></Grid>
        <Grid Grid.Column="1" Background="#FFD2E3ED">

        </Grid>
    </Grid>
    <ControlTemplate></ControlTemplate>
</Window>

我在哪里放置标签以便不会出现此错误?

1 个答案:

答案 0 :(得分:2)

模板,如样式,画笔,DataTemplates是资源,通常放在控件的资源字典或资源部分中。

<Window>
    <Window.Resources>
        <ControlTemplate TargetType="{x:Type Button}"/>
        <ControlTemplate x:Key="myTemplate" TargetType="{x:Type Button}"/>
    <Window.Resources>

    <!-- this will use your implicit defined template -->
    <Button />
    <!-- this will use your explicit defined template called  myTemplate-->
    <Button Template="{StaticResource myTemplate}"/>
</Window>