我在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>
我错过了参考文献吗?