我在 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>
我是否缺少参考资料或其他内容?