mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-03-24 00:36:41 +08:00
23 lines
401 B
C#
23 lines
401 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace HZH_Controls.Controls
|
|
{
|
|
/// <summary>
|
|
/// 翻页控件类型
|
|
/// </summary>
|
|
public enum PageModel
|
|
{
|
|
/// <summary>
|
|
/// 数据模式
|
|
/// </summary>
|
|
Soure,
|
|
/// <summary>
|
|
/// 总页数模式
|
|
/// </summary>
|
|
PageCount
|
|
}
|
|
}
|