域名出现两次错误
本文关键字:两次 错误 域名 | 更新日期: 2023-09-27 18:33:12
我创建了一个这样的WPF窗口:
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:ReVVed" x:Class="ReVVed.Merge_Text_Window"
MinWidth="400" MinHeight="400" Width="600" Height="400" WindowStyle="ToolWindow" Title="Merge Text" WindowStartupLocation="CenterOwner" Loaded="Window_Loaded">
我编译了代码并尝试了它,但是当我返回并添加Window_Loaded事件处理程序时,我开始收到此错误:
类型名称"Merge_Text_Window"在类型"ReVVed.ReVVed"中不存在
我不知道什么是在研究ReVVed.ReVVed。错误引用第 4 行第 22 列,即 Minwidth 声明。在我的代码中任何地方都没有ReVVed.ReVVed命名空间。我无法编译。
有什么想法吗?
您是否尝试过此操作,因为该消息在类复制已指定的本地命名空间之前暗示命名空间?
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:ReVVed" x:Class="Merge_Text_Window"
MinWidth="400" MinHeight="400" Width="600" Height="400" WindowStyle="ToolWindow" Title="Merge Text" WindowStartupLocation="CenterOwner" Loaded="Window_Loaded">
不知道为什么它有效,但我将窗口和代码放在一个单独的命名空间中,而不是在项目命名空间下,它现在可以编译。