我正在尝试将一些数据绑定到WPF列表视图。我的数据类型的一个属性是byte[]
类型,我希望它显示为逗号分隔的字符串,因此例如{ 12, 54 }
将显示为12, 54
而不是Byte[] Array
。我想我想制作一个自定义DataTemplate
,但我不确定。这是最好的方式吗?如果是这样,我该怎么办?如果没有,最好的方法是什么?
编辑:我只想将它用于一列 - 其他属性显示正常。
答案 0 :(得分:11)
我建议使用ValueConverter:
[ValueConversion(typeof(byte []), typeof(string))]
public class ByteArrayConverter : IValueConverter
{
#region IValueConverter Members
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
byte [] bytes = (byte [])value;
StringBuilder sb = new StringBuilder(100);
for (int x = 0; x<bytes.Length; x++)
{
sb.Append(bytes[x].ToString()).Append(" ");
}
return sb.ToString();
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotSupportedException();
}
#endregion
}
在你的xaml中,你可以将它添加到你的绑定中:
<Window.Resources>
<local:ByteArrayConverter x:Key="byteArrayConverter"/>
</Window.Resources>
...
"{Binding ByteArrayProperty, Converter={StaticResource byteArrayConverter}}"
答案 1 :(得分:2)
我会创建一个ValueConverter
来创建逗号分隔的字符串。然后,您可以直接绑定到byte[]
,但在绑定中指定转换器。
(当Mark的答案很好时,我不需要输入代码。)
答案 2 :(得分:1)
我设置了以下示例,该示例使用值转换器演示绑定。
这是Window1.xaml.cs:
private ObservableCollection<ByteData> _collection = new ObservableCollection<ByteData>();
public Window1()
{
InitializeComponent();
_collection.Add(new ByteData(new byte[] { 12, 54 }));
_collection.Add(new ByteData(new byte[] { 1, 2, 3, 4, 5 }));
_collection.Add(new ByteData(new byte[] { 15 }));
}
public ObservableCollection<ByteData> ObservableCollection
{
get { return _collection; }
}
public class ByteData
{
byte[] _data;
public ByteData(byte[] data)
{
_data = data;
}
public byte[] Data
{
get { return _data; }
set { _data = value; }
}
}
这是Window1.xaml:
<Window x:Class="TestWpfApplication.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TestWpfApplication"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
Title="Window1" Height="300" Width="300"
DataContext="{Binding RelativeSource={RelativeSource Self}}">
<Window.Resources>
<local:ByteToStringConverter x:Key="byteToStringConverter"/>
</Window.Resources>
<StackPanel>
<ListView ItemsSource="{Binding ObservableCollection}">
<ListView.ItemTemplate>
<DataTemplate>
<TextBox Width="200" Text="{Binding Path=Data, Mode=TwoWay,
UpdateSourceTrigger=PropertyChanged, Converter={StaticResource byteToStringConverter}}"/>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackPanel>
这是值转换器:
public class ByteToStringConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
byte[] data = (byte[])value;
StringBuilder byteString = new StringBuilder();
int idx;
for (idx = 0; idx < data.Length - 1; idx++)
{
byteString.AppendFormat("{0}, ", data[idx]);
}
byteString.Append(data[idx]);
return byteString.ToString();
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
// If you want your byte-data to be editable in the textboxes,
// this will need to be implemented.
return null;
}
}