我正在尝试将TextBlock绑定到ObservableCollection中的项目。 TextBlock值应该生成到集合中的元素。集合中元素的数量在0到7之间(如果有帮助的话)。 MyClass实现了INotifyPropertyChanged。它应该是直接TextBlock,而不是ListBox。我该怎么做?谢谢!
更新:问题是我以前不知道集合中的元素数量。我知道在这种情况下最好使用ListBox或ListView,但在TextBlock或Label中使用它是很重要的
例如:
1.ObservableCollection包含元素0,1,2。
TextBlock应包含以下“值:0,1,2”
2. ObservableCollection包含元素0,1。
TextBlock应包含以下“值:0,1”
<TextBlock>
<Run Text="Values: "/>
<Run Text="{Binding Values}" />
</TextBlock>
ObservableCollection<int> values = new ObservableCollection<int>();
public ObservableCollection<int> Values
{
get => values;
set
{
values = value;
OnPropertyChanged();
}
}
答案 0 :(得分:2)
使用连接这些字符串的转换器:
public class StringsCollectionConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value == null) return null;
return string.Join("\n", value as ObservableCollection<string>);
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
<强>的Xaml 强>
<Window.Resources>
<local:StringsCollectionConverter x:Key="StringsCollectionConverter"/>
</Window.Resources>
<Grid>
<TextBlock Text="{Binding TextBlockCollection, Converter={StaticResource StringsCollectionConverter}}"></TextBlock>
</Grid>
答案 1 :(得分:0)
您必须使用转换器绑定到集合
问题是在更改集合时更新值(这里我的意思是不将值设置为新集合,而是在集合中添加/删除项目)。
要在添加/删除时实现更新,您必须使用MultiBinding
与ObservableCollection.Count之一绑定,因此如果更改计数,则将更新绑定属性。
<Window.Resources>
<local:MultValConverter x:Key="multivalcnv"/>
</Window.Resources>
<TextBlock>
<TextBlock.Text>
<MultiBinding Converter="{StaticResource multivalcnv}">
<Binding Path="Values"/>
<Binding Path="Values.Count"/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
public class MultValConverter : IMultiValueConverter
{
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
if (values.Length > 1 && values[0] is ICollection myCol)
{
var retVal = string.Empty;
var firstelem = true;
foreach (var item in myCol)
{
retVal += $"{(firstelem?string.Empty:", ")}{item}";
firstelem = false;
}
return retVal;
}
else
return Binding.DoNothing;
}
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
{
throw new NotImplementedException("It's a one way converter.");
}
}
答案 2 :(得分:0)
创建一个额外的字符串属性,每次收集项[s]更改时都会更改:
public class Vm
{
public Vm()
{
// new collection assigned via property because property setter adds event handler
Values = new ObservableCollection<int>();
}
ObservableCollection<int> values;
public ObservableCollection<int> Values
{
get => values;
set
{
if (values != null) values.CollectionChanged -= CollectionChangedHandler;
values = value;
if (values != null) values.CollectionChanged += CollectionChangedHandler;
OnPropertyChanged();
}
}
private void CollectionChangedHandler(object sender, NotifyCollectionChangedEventArgs e)
{
OnPropertyChanged("ValuesText");
}
public string ValuesText
{
get { return "Values: " + String.Join(", ", values);}
}
}
然后绑定到该属性:
<TextBlock Text="{Binding ValuesText}"/>