PageChangingEventArgs.cs
351 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
namespace HHECS.Model.Controls
{
public class PageChangingEventArgs : RoutedEventArgs
{
public int OldPageIndex { get; set; }
public int NewPageIndex { get; set; }
public bool IsCancel { get; set; }
}
}