Expression Blend 2中WPF中不支持UserControl的错误

时间:2009-05-04 01:43:24

标签: silverlight expression-blend

我在Visual Studio中创建了一个测试Silverlight 2应用程序,只有copying the Tim Heuer video,但是当我在Blend中打开它时出现此错误

  

Windows Presentation Foundation(WPF)项目中不支持UserControl

这是XAML代码

<UserControl x:Class="MyFirstApp.Page"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    Width="400" Height="300">
    <Grid x:Name="LayoutRoot" Background="White">
        <StackPanel Orientation="Vertical">
            <TextBox x:Name="myTextBox" FontSize="60" />
            <Button Content="Click Me" FontSize="60" Click="Button_Click" />
        </StackPanel>
    </Grid>
</UserControl>

我错过了参考文献吗?

2 个答案:

答案 0 :(得分:3)

您需要安装Expression Blend 2.0 SP1

答案 1 :(得分:0)