单独命名空间中的WPF自定义控件

本文关键字:WPF 自定义控件 命名空间 单独 | 更新日期: 2023-09-27 18:17:28

我尝试使Visual c#应用程序,这是使用UserControl (WPF)。默认情况下,VS Community 2015 c#在与主程序相同的命名空间中生成UserControl。它是正确建造的。我想把它单独放在自己的名称空间中,以便将来重用。我将自动生成的代码更改为在单独的命名空间中拥有UserControl。

我的代码

用户控件

<UserControl x:Class="nsTabI2CMemRW.TabI2CMemRW"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
        xmlns:local="clr-namespace:nsTabI2CMemRW"
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="500">
    <Grid>
        <TextBox x:Name="AddrH"/>
        <Label x:Name="AddrH_Label"/>
    </Grid>

c#类
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using WpfApplication1;    // This is my main app namespace
namespace nsTabI2CMemRW
{
    /// <summary>
    /// Interaction logic for TabI2CMemRW.xaml
    /// </summary>
    public partial class TabI2CMemRW : UserControl
    {
        public TabI2CMemRW()
        {
            //InitializeComponent();
            ((WpfApplication1.MainWindow)Application.Current.MainWindow).InitializeComponent();  //InitializeComponent();
        }
    }
}

主Windows XAML

<Window x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:WpfApplication1"
    xmlns:UserControl="clr-namespace:nsTabI2CMemRW"
    mc:Ignorable="d"
    Title="MainWindow" Height="649.005" Width="620.667" ScrollViewer.CanContentScroll="True">
<Grid>
    <TabControl x:Name="tabControl" Margin="0,0,0.4,0.2">
        <TabControl.BindingGroup>
            <BindingGroup/>
        </TabControl.BindingGroup>
        <TabItem x:Name="I2CMemReadWrite" Header="I2C Mem Read/Write">
            <UserControl:TabI2CMemRW Margin="0,0,-0.2,278.2"/>
        </TabItem>
        <TabItem Header="TabItem">
        <Button x:Name="button" Content="Button" Height="100" Width="75"/>
        </TabItem>
    </TabControl>
</Grid>

设计器显示行

错误"对象引用未设置为对象的实例"
<UserControl:TabI2CMemRW Margin="0,0,-0.2,278.2"/>

程序编译良好,但第一个选项卡(我的UserControl应该是)是空白的。

单独命名空间中的WPF自定义控件

这里有很多问题,我不能一一回答。试评价((WpfApplication1.MainWindow) Application.Current.MainWindow) .InitializeComponent ();

和离开

InitializeComponent ();

而不是

是的,这个((WpfApplication1.MainWindow)Application.Current.MainWindow).InitializeComponent();是错的!错误"对象引用未设置为对象的实例"与此代码有关(使用VS调试器发现,在这篇文章WPF中,'对象引用未设置为对象的实例'在设计师。我认为它对WPF的类似情况很有用)。

在注释掉行之后(见上面),只留下InitializeComponent()并重新编译两次代码-它工作了!我还检查了绑定到XAML文件的正确代码隐藏文件(不小心删除了XAML文件的隐藏代码)。我如何再次添加后面的代码?

这条线也是重要的xmlns:UserControl="clr-namespace:nsTabI2CMemRW" <UserControl:TabI2CMemRW Margin="0,0,-0.2,278.2"/>。我想我可以第一次错过他们。(xmlns:之后可以是任何名称,不仅仅是UserControl)