我有一个ObservableCollection
with Students
。每个学生都有一个成绩属性。我希望AverageGrade
(所有学生的)财产无需按下按钮或创建计时器即可工作。如何在DependencyProperty
此处使用此只读AverageGrade
属性?
学生.cs
using System.ComponentModel;
using System.Windows;
using System;
namespace WpfApplication17.Models
{
class Student : INotifyPropertyChanged
{
#region Constructors
public Student(string firstName, string lastName, double grade)
{
this.FirstName = firstName;
this.LastName = lastName;
this.Grade = grade;
}
#endregion
#region Properties
private string _firstName;
public string FirstName
{
get { return _firstName; }
set
{
_firstName = value;
OnPropertyChanged("FirstName");
}
}
private string _lastName;
public string LastName
{
get { return _lastName; }
set
{
_lastName = value;
OnPropertyChanged("LastName");
}
}
private double _grade;
public double Grade
{
get { return _grade; }
set
{
_grade = value;
OnPropertyChanged("Grade");
}
}
#endregion
#region PropertyChanged
public event PropertyChangedEventHandler PropertyChanged;
public void OnPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
#endregion
}
}
主窗口视图模型
using WpfApplication17.ViewModel;
using System.Collections.ObjectModel;
using WpfApplication17.Models;
namespace WpfApplication17.ViewModels
{
class MainWindowViewModel : ViewModelBase
{
#region Constructors
public MainWindowViewModel()
{
Students = new ObservableCollection<Student>();
Students.Add(new Student("Frank", "Sinatra", 7));
Students.Add(new Student("Bart", "Simpson", 6));
}
#endregion
#region Properties
private ObservableCollection<Student> _students;
public ObservableCollection<Student> Students
{
get { return _students; }
set
{
_students = value;
OnPropertyChanged("Students");
}
}
public double AverageGrade
{
get { return GetAverageGrade(); }
}
public double GetAverageGrade()
{
double sum = 0;
foreach (Student s in Students)
sum += s.Grade;
return sum / (double)Students.Count;
}
#endregion
}
}
主窗口.xaml
<Window x:Class="WpfApplication17.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 Orientation="Horizontal">
<DataGrid ItemsSource="{Binding Students}" />
<Label Content="Average Grade:" />
<Label Content="{Binding AverageGrade}" />
</StackPanel>
</Window>