我可以Bind
TextBox.Text
到最后一个项目ObservableCollection<string>
吗?
我试过这个:
<TextBox Text={Binding XPath="Model/CollectionOfString[last()]"/>
但它不绑定。
谢谢你。
请尝试以下方法,
1、使用IValueConverter。
class DataSourceToLastItemConverter : IValueConverter
{
public object Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
IEnumerable<object> items = value as IEnumerable<object>;
if (items != null)
{
return items.LastOrDefault();
}
else return Binding.DoNothing;
}
public object ConvertBack(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new System.NotImplementedException();
}
}
然后像这样绑定:
<Grid>
<Grid.Resources>
<local:DataSourceToLastItemConverter x:Key="DataSourceToLastItemConverter" />
</Grid.Resources>
<TextBox Text="{Binding Path=Model.CollectionOfString,Converter={StaticResource DataSourceToLastItemConverter}}"/>
</Grid>
它没有绑定,因为您不能XPath
在非 XML 数据源上使用该属性;您必须Path
改用,并且该属性不提供类似的语法。所以你不能直接绑定到集合的最后一个元素,除非你知道最后一个值的索引。但是,有几个可用的解决方法:
编写自定义值转换器来获取集合并将其“转换”为最后一个元素并不难。霍华德的回答给出了一个准系统转换器来做到这一点。
这甚至更容易做到,但它涉及代码隐藏。
如果您已将默认集合视图中的“当前”项设置为集合中的最后一项,则可以使用绑定Path=Model.CollectionOfString/
(注意末尾的斜线) 。在您的模型中执行此操作:
// get a reference to the default collection view for this.CollectionOfString
var collectionView = CollectionViewSource.GetDefault(this.CollectionOfString);
// set the "current" item to the last, enabling direct binding to it with a /
collectionView.MoveCurrentToLast();
请注意,如果将项目添加到集合中或从集合中删除,则不一定会自动调整当前项目指针。