Tim Heuer のビデオをコピーするだけで、Visual Studio で Silverlight 2 のテスト アプリを作成しましたが、Blend で開くと、このエラーが発生します。
UserControl は、Windows Presentation Foundation (WPF) プロジェクトではサポートされていません
これは 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>
参照か何かがありませんか?