尝试在转换中创建pop时显示错误

时间:2012-09-27 03:54:24

标签: .net wpf

我是WPF的新手,我正在尝试创建一个简单的pop。但是我收到以下错误“在newwindow类型中找不到可附加属性触发器。下面是XAML代码:

<Window x:Class="WpfApplication6.newwindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="newwindow" Height="295" Width="371">
<Grid Height="257" Width="349">
    <Label Content="Label" Height="28" HorizontalAlignment="Left" Margin="115,0,0,112" Name="label1" VerticalAlignment="Bottom" Width="127" />
    <newwindow.Triggers>
        <EventTrigger RoutedEvent="newwindow.Loaded">
            <BeginStoryboard>
                <Storyboard>
                    <DoubleAnimation Storyboard.TargetProperty="Opacity" From="0" To="1" Duration="0:0:2" FillBehavior="HoldEnd" />
                </Storyboard>
            </BeginStoryboard>
        </EventTrigger>
    </newwindow.Triggers>
    </Grid>
</Window>

我正在使用VS 2010和.net 3.5框架。

谢谢。

1 个答案:

答案 0 :(得分:0)

通过Window.Triggers和newwindow.Loaded替换newwindow.Triggers通过Window.Loaded。

程序知道你要引用你的新窗口,因为它位于你的新窗口的窗口中(并考虑重命名你的“新窗口”)^^。

(您可以编辑旧问题......)