Vs2017:发现资源字典时发生错误

时间:2017-07-12 04:45:14

标签: wpf data-binding resourcedictionary

当我尝试引用资源字典my app.xaml file

时,出现以下错误
<Application x:Class="DesignerPoc.App"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:local="clr-namespace:DesignerPoc"
         StartupUri="MainWindow.xaml">
<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="pack://application:,,,/Dashboard.Designer.WPF;Connection/Views/test.xaml"/>
          </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
 </Application.Resources>

错误

An Error occurred while finding the resource dictionary "pack://application:,,,/Dashboard.Designer.WPF;Connection/Views/test.xaml"

refer the image

如何解决这个问题。??

1 个答案:

答案 0 :(得分:1)

您的Resource File Pack URI错了。

它应该是这样的,包括component部分:

pack://application:,,,/Dashboard.Designer.WPF;component/Connection/Views/test.xaml