最近、Visual Studio 2012 RC を VS 2012 SDK および LightSwitch Extensibility Toolkit と共にインストールしました。
これは私の Client.Design -> TControl.XAML ファイルの XAML コードです
<UserControl x:Class="CustomControls.Presentation.Controls.TControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:framework="clr-namespace:Microsoft.LightSwitch.Presentation.Framework;assembly=Microsoft.LightSwitch.Client">
<Grid Width="Auto">
<Grid.RowDefinitions>
<RowDefinition Height="100"></RowDefinition>
<RowDefinition Height="40"></RowDefinition>
</Grid.RowDefinitions>
<framework:ContentItemPresenter ContentItem="{Binding ChildItems[0]}" Grid.Row="0" Margin="3" />
<framework:ContentItemPresenter ContentItem="{Binding ChildItems[1]}" Grid.Row="0" Margin="3" />
</Grid>
</UserControl>
この XAML の出力がデザイナーに表示されません。代わりに、デザイナー領域に次のエラー メッセージが表示されます。
Exception: Error HRESULT E_FAIL has been returned from a call to a COM component.
Stacktrace:
at MS.Internal.XcpImports.CheckHResult(UInt32 hr)
at MS.Internal.XcpImports.Collection_InsertValue[T](PresentationFrameworkCollection`1 collection, UInt32 index, CValue value)
at MS.Internal.XcpImports.Collection_InsertDependencyObject[T](PresentationFrameworkCollection`1 collection, UInt32 index, DependencyObject value)
at System.Windows.PresentationFrameworkCollection`1.InsertDependencyObject(Int32 index, DependencyObject value)
at System.Windows.Controls.UIElementCollection.InsertInternal(Int32 index, UIElement value)
これは、ここに含まれる名前空間と Silverlight のバージョンに関係があると強く思います。私のプロジェクトは、Silverlight バージョン 5 を使用するように設定されています。
簡単なグーグル検索と「Stackoverflowing」により、このエラーに関する一般的な情報が明らかになりましたが、あまり役に立ちませんでした。
どんな助けでも大歓迎です。