无法将对象声明为资源

时间:2018-04-24 07:35:31

标签: c# .net wpf xaml

我想从我的代码隐藏声明一个类作为XAML中的资源。

这是我的XAML:

<Window x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:WpfApplication1"
    Title="ConverterSample" Height="140" Width="250">
    <Window.Resources>
        <local:YesNoToBooleanConverter x:Key="YesNoToBooleanConverter" /> //Here I get my error 
    </Window.Resources>
</Window>

我在XAML中定义了一个名称空间,但不知怎的,它在我的资源中找不到YesNoToBooleanConverter

YesNoToBooleanConverter在我的代码背后定义如下:

using System;
using System.Windows;
using System.Windows.Data;

namespace WpfApplication1
    {
        public partial class MainWindow : Window
        {
             public MainWindow()
             {
                    InitializeComponent();
             }
        }

        public class YesNoToBooleanConverter : IValueConverter
        {
            public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
            {
                //Some code
            }

            public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
            {
                //some code
            }
        }
    }

我尝试了一切,但我无法弄清楚我的错误。

1 个答案:

答案 0 :(得分:1)

<强>解决方案:
重建整个项目