WPF 调用多个userControl
我在主窗体中要加载两个userControl,都是在同一个命名空间下的但是userControl1加载成功但是userControl2就加载失败为什么呢怎么弄呢?代码如下...
我在主窗体中要加载两个userControl,都是在同一个命名空间下的 但是userControl1加载成功 但是userControl2就加载失败 为什么呢 怎么弄呢?代码如下:
<Window x:Class="TryToWpf.Window2"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:userControl="clr-namespace:TryToWpf"
Title="Window2" Height="380" Width="300">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="5*"></RowDefinition>
<RowDefinition Height="1*"></RowDefinition>
<RowDefinition Height="1*"></RowDefinition>
</Grid.RowDefinitions>
<TabControl Name="tabControl1" Grid.Row="0">
<TabItem Header="调用UserControl无传参" Name="tabItem1" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<Grid>
<userControl:UserControl1 x:Name="login"></userControl:UserControl1>
</Grid>
</TabItem>
<TabItem Header="调用Usercontrol传参" Name="tabItem2" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<Grid>
<userControl:UserControl2 x:Name="ucontrol"></userControl:UserControl2>
</Grid>
</TabItem>
</TabControl>
</Grid>
</Window>
报错信息:
错误 1 未找到类型“userControl:UserControl2”。请确保不缺少程序集引用,并且已生成所有引用的程序集。 展开
<Window x:Class="TryToWpf.Window2"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:userControl="clr-namespace:TryToWpf"
Title="Window2" Height="380" Width="300">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="5*"></RowDefinition>
<RowDefinition Height="1*"></RowDefinition>
<RowDefinition Height="1*"></RowDefinition>
</Grid.RowDefinitions>
<TabControl Name="tabControl1" Grid.Row="0">
<TabItem Header="调用UserControl无传参" Name="tabItem1" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<Grid>
<userControl:UserControl1 x:Name="login"></userControl:UserControl1>
</Grid>
</TabItem>
<TabItem Header="调用Usercontrol传参" Name="tabItem2" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<Grid>
<userControl:UserControl2 x:Name="ucontrol"></userControl:UserControl2>
</Grid>
</TabItem>
</TabControl>
</Grid>
</Window>
报错信息:
错误 1 未找到类型“userControl:UserControl2”。请确保不缺少程序集引用,并且已生成所有引用的程序集。 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询