2016-09-22 79 views
0

我創建一個VSIX插件和只是增加了一個WPF控件這樣的:VSIX CS0426 t類型名稱的意見並不在類型存在「ABC」

<UserControl x:Class="ABC.Views.Configuration.MyControl" 
      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:ABC.Views.Configuration" 
      mc:Ignorable="d" 
      Loaded="UserControl_Loaded" 
      d:DesignHeight="300" d:DesignWidth="300"> 
    <Grid> 
    </Grid> 
</UserControl> 

當我編譯項目我我得到的錯誤: CS0426類型名稱視圖不存在類型'ABC'

我檢查了項目的默認命名空間和其他相關配置,一切看起來不錯。實際上,我在其他用戶控件中編譯得很好。

我在做什麼錯?

回答

0

此問題的根本原因是這條線在上述XAML:

Loaded="UserControl_Loaded" 

出於某種原因VSIX不喜歡在XAML佈線事件。我只是將其刪除並將其連接到代碼隱藏

相關問題