TabItem
の でユーザー コントロールを開きたいですTabControl
。
私はこのようにこれをやっています:
<Window x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:a="clr-namespace:Pauspan_WPF_"
Title="Pauspan" Height="568" Width="1095" Name="FrmMain">
<Grid Name="MainGrid">
<TabControl Height="400" Margin="187,33,16,0" Name="TbCtrlMain" >
<TabItem Header="TabItem1" Name="TabItem1">
<a:UserControl1 />
</TabItem>
</TabControl>
しかし、次の行でエラーが発生します。
<a:usercontrol1/>
エラーは次のとおりです。
**The type 'a:UserControl1' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.**
UserControl1 を UserControl の名前にします。
これどうやってするの?なぜこのエラーが発生するのですか?