y的StatusBar记录x
我有一个ObservableCollection,它是Grid的DataContext。 网格是插入到主窗口中的用户控件。
我想在StatusBar中显示'记录x的y',作为第一步,我试图使用这个XAML在网格中显示它:
<TextBlock Grid.Row="2" Grid.Column="3">
<TextBlock Text="{Binding CurrentPosition}" /> <TextBlock Text="{Binding Count}" />
</TextBlock>
计数工作没有问题,并自动更新添加新项目。 在我的代码中定义的CurrentPosition始终保持为0。
我怎样才能让CurrentPosition自动更新? 我希望不必使用INotify **,因为这已经是一个ObservableCollection。
我也没有任何代码隐藏,所以我希望它可以在我的课程(或模型)和XAML中实现。
我确实尝试过使用CurrentChanged,但没有成功:
public MyObservableCollection() : base() {
this.GetDefaultView().CurrentChanged += MyObservableCollection_CurrentChanged;
}
MyObservableCollection:
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace ToDoApplication.Models {
public class MyObservableCollection<T> : ObservableCollection<T> {
public MyObservableCollection() : base() {
}
public MyObservableCollection(List<T> list) : base(list) {
}
public MyObservableCollection(IEnumerable<T> collection) : base(collection) {
}
private System.ComponentModel.ICollectionView GetDefaultView() {
return System.Windows.Data.CollectionViewSource.GetDefaultView(this);
}
public int CurrentPosition {
get {
return this.GetDefaultView().CurrentPosition;
}
}
public void MoveFirst() {
this.GetDefaultView().MoveCurrentToFirst();
}
public void MovePrevious() {
this.GetDefaultView().MoveCurrentToPrevious();
}
public void MoveNext() {
this.GetDefaultView().MoveCurrentToNext();
}
public void MoveLast() {
this.GetDefaultView().MoveCurrentToLast();
}
public bool CanMoveBack() {
return this.CurrentPosition > 0;
}
public bool CanMoveForward() {
return (this.Count > 0) && (this.CurrentPosition < this.Count - 1);
}
}
public enum Navigation {
First, Previous, Next, Last, Add
}
}
更新 :我添加了下面的代码作为一个可能的解决方案,但我不太喜欢它,我希望有一个更好的来,不需要我使用INotifyPropertyChanged - 我怀疑我会结束重复所有ObservableCollection应具有的功能。 (我也不知道为什么我需要重新通知计数改变。)
更新2 :以下内容不是(完整的)解决方案,因为它会干扰集合的其他行为(通知),但我将它保留在此处以防它包含任何有用的信息。
namespace ToDoApplication.Models {
public class MyObservableCollection<T> : ObservableCollection<T>, INotifyPropertyChanged {
public new event PropertyChangedEventHandler PropertyChanged;
private int _currentPos = 1;
public MyObservableCollection() : base() {
this.GetDefaultView().CurrentChanged += MyObservableCollection_CurrentChanged;
this.CollectionChanged += MyObservableCollection_CollectionChanged;
}
public MyObservableCollection(List<T> list) : base(list) {
this.GetDefaultView().CurrentChanged += MyObservableCollection_CurrentChanged;
this.CollectionChanged += MyObservableCollection_CollectionChanged;
}
public MyObservableCollection(IEnumerable<T> collection) : base(collection) {
this.GetDefaultView().CurrentChanged += MyObservableCollection_CurrentChanged;
this.CollectionChanged += MyObservableCollection_CollectionChanged;
}
void MyObservableCollection_CurrentChanged(object sender, EventArgs e) {
this.CurrentPosition = this.GetDefaultView().CurrentPosition;
}
void MyObservableCollection_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e) {
RaisePropertyChanged("Count");
}
private System.ComponentModel.ICollectionView GetDefaultView() {
return System.Windows.Data.CollectionViewSource.GetDefaultView(this);
}
public int CurrentPosition {
get {
return _currentPos;
}
private set {
if (_currentPos == value + 1) return;
_currentPos = value + 1;
RaisePropertyChanged("CurrentPosition");
}
}
private void RaisePropertyChanged(string propertyName) {
if (PropertyChanged != null) {
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
public void MoveFirst() {
this.GetDefaultView().MoveCurrentToFirst();
}
public void MovePrevious() {
this.GetDefaultView().MoveCurrentToPrevious();
}
public void MoveNext() {
this.GetDefaultView().MoveCurrentToNext();
}
public void MoveLast() {
this.GetDefaultView().MoveCurrentToLast();
}
public bool CanMoveBack() {
return this.CurrentPosition > 1;
}
public bool CanMoveForward() {
return (this.Count > 0) && (this.CurrentPosition < this.Count);
}
}
public enum Navigation {
First, Previous, Next, Last, Add
}
}
有了这个,我可以在网格中显示“第1条之3”:
<TextBlock Grid.Row="2" Grid.Column="3" x:Name="txtItemOf">Item
<TextBlock x:Name="txtItem" Text="{Binding CurrentPosition}" /> of
<TextBlock x:Name="txtOf" Text="{Binding Count}" />
</TextBlock>
我不再需要这个TextBlock,因为我可以直接在(主) StatusBar
引用DataContext属性:
<StatusBar DockPanel.Dock="Bottom">
Item <TextBlock Text="{Binding ElementName=vwToDo, Path=DataContext.CurrentPosition}" />
Of <TextBlock Text="{Binding ElementName=vwToDo, Path=DataContext.Count}" />
</StatusBar>
问题与解决方案
在@JMarsch的回答之后:命名我的属性CurrentPosition
正在屏蔽直接从DataContext中可用的相同名称的属性,因为绑定是集合的默认视图(具有此属性)。
解决方案是重命名为MyCurrentPosition
,并从StatusBar引用原始属性,或者像我一样,完全删除我的版本(和GetDefaultView
):它们没有做任何特别有用的事情。
然后,我使用以下简单的ValueConverter在StatusBar 中将 0,1,2,..转换为1,2,3 ......。
[ValueConversion(typeof(int), typeof(int))]
class PositionConverter : IValueConverter {
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
return (int)value + 1;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
return (int)value - 1;
}
}
状态栏:
<StatusBar DockPanel.Dock="Bottom" x:Name="status">
Item <TextBlock Text="{Binding ElementName=vwToDo,
Path=DataContext.CurrentPosition, Converter={StaticResource posConverter}}" />
Of <TextBlock Text="{Binding ElementName=vwToDo, Path=DataContext.Count}" />
</StatusBar>
了解数据绑定到集合非常重要的一点是,XAML总是将数据绑定到集合视图,而不是集合本身。 因此,即使您的XAML似乎绑定到集合,但在运行时,您确实可以绑定到默认集合视图。
这是一个很酷的副作用:一个collectionview已经有一个CurrentPosition属性。 我认为事情正在破坏你,因为你无意中干涉你的收藏。
下面是一个非常快速和肮脏的小程序,它演示了一个到CurrentPostion和Count的工作绑定,而没有在集合上定义一个currentposition(因为在封面下,你真的绑定到了CollectionView,并且它已经有了一个CurrentPosition属性通知变化。
运行此程序,并注意当您单击增量按钮时,UI会适当更新。
这里是XAML:
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<StackPanel x:Name="ContentPanel">
<Button x:Name="IncrementButton" Content="Increment" Click="IncrementButton_Click"/>
<StackPanel Orientation="Horizontal">
<TextBlock x:Name="CurrentPositionTextBlock" Text="{Binding CurrentPosition}"/>
<TextBlock Text=" / "/>
<TextBlock Text="{Binding Count}"/>
</StackPanel>
</StackPanel>
</Window>
以下是代码隐藏:
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Windows;
using System.Windows.Data;
namespace WpfApplication1
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
this.Collection = new TestObservableCollection<object>() {new object(), new object(), new object()};
this.ContentPanel.DataContext = this.Collection;
}
public TestObservableCollection<object> Collection { get; set; }
private void IncrementButton_Click(object sender, RoutedEventArgs e)
{
this.Collection.GetDefaultView().MoveCurrentToNext();
}
}
public class TestObservableCollection<T> : ObservableCollection<T>
{
public ICollectionView GetDefaultView()
{
return CollectionViewSource.GetDefaultView(this);
}
}
}
这里有更多的读物给你:
http://msdn.microsoft.com/en-us/library/ms752347(v=vs.110).aspx
http://msdn.microsoft.com/en-us/library/system.windows.data.collectionviewsource(v=vs.110).aspx
编辑
如果您需要更多的证据,请将以下代码粘贴到我的按钮单击处理程序中 - 您将看到文本框绑定的实际对象类型是ListCollectionView,而不是实际的集合:
System.Diagnostics.Debug.WriteLine(this.CurrentPositionTextBlock.GetBindingExpression(TextBlock.TextProperty).ResolvedSource.GetType().FullName);
您的Count绑定正在更新,因为基础ObservableCollection<T>
在添加和删除项目时引发PropertyChanged
。
当您重新定位当前记录指针时,您的定位代码需要提高PropertyChanged
,以便Binding子系统知道重新查询该属性,这就是为什么INotifyPropertyChanged
存在的原因。 不过,我可能会像下面这样写它。 请注意使用ObservableCollections<T>
的OnPropertyChanged
从继承树中已实现的INotifyPropertyChanged引发正确的事件。
public void MoveFirst() {
this.GetDefaultView().MoveCurrentToFirst();
OnPropertyChanged(new PropertyChangedEventArgs("CurrentPosition"));
}
public void MovePrevious() {
this.GetDefaultView().MoveCurrentToPrevious();
OnPropertyChanged(new PropertyChangedEventArgs("CurrentPosition"));
}
public void MoveNext() {
this.GetDefaultView().MoveCurrentToNext();
OnPropertyChanged(new PropertyChangedEventArgs("CurrentPosition"));
}
public void MoveLast() {
this.GetDefaultView().MoveCurrentToLast();
OnPropertyChanged(new PropertyChangedEventArgs("CurrentPosition"));
}
链接地址: http://www.djcxy.com/p/79133.html