UnitTests_BufferWindow.cs 852 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;

namespace FLY.IntegratedControl.UI.Client.UnitTests
{
    public class UnitTests_BufferWindow : INotifyPropertyChanged
    {
        public bool IsFirstPage { get; set; }
        public bool IsLastPage { get; set; }

        public bool IsKeepNewest { get; set; }
        public int CurrentPage { get; set; }
        public int TotalPages { get; set; }
        public event PropertyChangedEventHandler PropertyChanged;
    }
    public class UnitTests_FlowGraphModelView : INotifyPropertyChanged
    {
        /// <summary>
        ///自动按保持最新值,剩余时间
        /// </summary>
        public int AutoKeepNewestTimeRemaining { get; set; }
        public event PropertyChangedEventHandler PropertyChanged;
    }
}