列の型は tinyint です。文字列に変換する必要がありますConverter
。xaml に使用します。
Text="{Binding confirmed,Converter={StaticResource UserConverter}}"
それで
class UserConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value != null)
{
var listOfInt = value as UInt32[];
return ""+listOfInt+"";
}
return "";
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return DependencyProperty.UnsetValue;
}
}
しかし、それは間違っています、コードで私を助けてください:)