我正在一個WPF項目中遇到一個惡性循環。起初,我得到」clr-namespace'{0}'not found「和」InitializeComponent does not exist「雙重問題
The 'clr-namespace' URI refers to a namespace '{0}' that is not included in the assembly
我已經能夠解決這個問題(首先),但它引入了另一個錯誤:
The name 'InitializeComponent' does not exist in the current context
然而,解決這一問題再次引起了第一個。相關XAML代碼如下所示(簡化):
<Window 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:local="clr-namespace:Main_Namespace"
Title="Client" WindowState="Maximized" MinWidth="800" MinHeight="600">
</Window>
請注意,我的主命名空間實際上它有一個空間....也許這就是造成錯誤?我知道Visual Studio(以及其他任何代碼編輯器)對於如何命名文件是相當挑剔的...
這似乎工作。它編譯得很好......我現在在使用默認構造函數的類的構造函數上得到一個System.NotImplementedException ...>。> – ThaMe90 2011-12-16 08:38:31