gpt4 book ai didi

c# - 无法在 WPF 中创建继承的用户控件,本地命名空间中的基本控件 "does not exist"

转载 作者:行者123 更新时间:2023-12-04 17:06:18 30 4
gpt4 key购买 nike

我试图在从基类继承的 WPF 中创建自定义用户控件“UserControl1”。其中,我在 XAML 中收到此错误:
错误 XDG0008 名称“ControlBase”在命名空间“clr-namespace:Temp”中不存在。
我也在 DesignHeight & Width 收到错误

ControlBase 类在 VS 自动完成中可用。

ControlBase 类在命名空间 Temp 中定义。

我尝试更改基类的关键字,例如添加部分。

用户控件1.xaml:

<local:ControlBase x:Class="Temp.UserControl1"
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:Temp"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>

</Grid>
</local:ControlBase>

UserControl1.xaml.cs:
namespace Temp
{
/// <summary>
/// Interaction logic for UserControl1.xaml
/// </summary>
public partial class UserControl1 : ControlBase
{
public UserControl1()
{
InitializeComponent();
}
}
}

ControlBase.cs:
using System.Windows.Controls;

namespace Temp
{
public class ControlBase : UserControl
{
public ControlBase() { }
}
}

我希望 UserControl1 从 ControlBase 继承而不会出现编译器错误。

最佳答案

我不知道我做了什么,但它自己修复了。

关于c# - 无法在 WPF 中创建继承的用户控件,本地命名空间中的基本控件 "does not exist",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55872047/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com