我正在尝试创建IValueConverter
,其中包含enum
并吐出URI。转换器在运行时按预期工作。然而,XAML设计师告诉我一个错误说:
对象必须与枚举类型相同。传入的类型是' Mocks.WarframeHelper_Model_Enumerations_15_1293735 + RelicTypes&#39 ;;枚举类型是' WarframeHelper.Model.Enumerations + RelicTypes'。
我有一个更简单的模型版本,其中包含我在设计时只需要的属性,但使用的enum
完全相同(或至少应该是)。无论如何都有这个。
以下是IValueConverter
的代码(我只是抓住这些东西,所以如果我做错了,请随时纠正我)
public class NameToUriConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if(Enum.IsDefined(typeof(Enumerations.RelicTypes), value))
{
return new Uri("/Assets/RelicIcons/Relic_" + (value).ToString() + ".png", UriKind.Relative);
}
else return new Uri("/Assets/Placeholder.png", UriKind.Relative);
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return value as string;
}
}
这是我用于模拟数据的自定义数据类型:
public class Sample_RelicModel
{
public Uri ImageUri { get; set; }
public bool isVaulted { get; set; }
public Enumerations.RelicFlavors Flavor { get; set; }
public Enumerations.RelicTypes Type { get; set; }
public Enumerations.DropRearity Rearity { get; set; }
public ObservableCollection<Sample_PrimeItem_Component> DropTable { get; set; }
private int count;
public int Count
{
get { return count; }
set
{
if (value >= 0)
{
count = value;
}
else MessageBox.Show("You don't have enough relics", "Error", MessageBoxButton.OK, MessageBoxImage.Error);
}
}
public Sample_RelicModel() { }
}
转换器再次在运行时按预期工作,但由于模拟数据,XAML设计师不喜欢它。
答案 0 :(得分:3)
在传递给value
之前将Enum.IsDefined
转换为字符串,只要枚举的大小写匹配,它就应该有效。根据{{3}}
Enum.IsDefined(typeof(Enumerations.RelicTypes), value.ToString())