動的に読み込まれる XAML の例
<Grid xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
xmlns:usercontrols='clr-namespace:App.Views.UserControls'>
<TextBlock>Why don't you click the button?</TextBlock>
<usercontrols:SuperButton
Command="{Binding DataContext.OpenURLNew,RelativeSource=
{RelativeSource FindAncestor, AncestorType={x:Type ContentPresenter}}"
CommandParameter="50">
ClickMe</usercontrols:SuperButton>
</Grid>
SuperButton が同じアセンブリで定義されているにもかかわらず、これを読み込むと、「不明なタイプの usercontrols:superbutton を読み込めません」で失敗します。
これは、SuperButton にコード ビハインドが関連付けられているためだと思いますか? XamlReader.Load() が必要なものを見つけるのを助ける方法はありますか?