2

我在 Visual Studio 中创建了一个测试 Silverlight 2 应用程序,只是复制了 Tim Heuer 视频,但是当我在 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>

我是否缺少参考资料或其他内容?

4

2 回答 2

3

您需要安装Expression Blend 2.0 SP1

于 2009-05-06T11:41:30.460 回答
0

请看一下这个线程:

http://social.expression.microsoft.com/Forums/en-US/blend/thread/33030347-c99a-4f41-8be7-089c92e4ab2d

于 2009-10-11T20:35:43.477 回答