下面是我的App.xaml
<Application
x:Class="SpinrWindowsMobile.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
>
<!--Application Resources-->
<Application.Resources >
<ResourceDictionary>
<local:LocalizedStrings xmlns:local="clr-namespace:SpinrWindowsMobile" x:Key="LocalizedStrings"/>
<converter:TextColorConverter xmlns:converter="clr-namespace:SpinrWindowsMobile.Common" x:Key="TextColorConverter"></converter:TextColorConverter>
</ResourceDictionary>
</Application.Resources>
....
</Application>
我在NameSpaceSpinerWindowsMobile.Common中编写了TextColorConverter.cs在启动应用程序时,它给了我一个异常无法创建SpinerWindowsMobile.Common.TextColorConverter类型的实例。我不知道我在哪里失踪了。下面是我的TextColorConverter.cs类
class TextColorConverter : 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
}
}
我正在使用Microsoft Visual Studio 2012 For Windows Phone作为我的开发工具。我想分享的另一件事是,我没有在System.Windows.Data命名空间中获得ValueConversationAttribute类。有人能告诉我哪里错了吗。
您将使类成为公共类(默认情况下,它是内部的)。否则就无法实例化。
publicclass TextColorConverter:IValueConverter