using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.CustomResource.UserControls { #region EnumDatePickerType public enum EnumDatePickerType { /// /// 单个日期 /// SingleDate, /// /// 连续的多个日期 /// SingleDateRange, /// /// 只显示年份 /// Year, /// /// 只显示月份 /// Month, /// /// 显示一个日期和时间 /// DateTime, /// /// 显示连续的日期和时间 /// DateTimeRange, } #endregion #region FlatButtonSkinEnum /// /// Button类型 /// public enum FlatButtonSkinEnum { Yes, No, Default, primary, ghost, dashed, text, info, success, error, warning, } #endregion #region EnumPromptType /// /// 提示类型 /// public enum EnumPromptType { /// /// 消息 /// Info, /// /// 警告 /// Warn, /// /// 失败 /// Error, /// /// 成功 /// Success, } #endregion /// /// 加载类型 /// #region EnumLoadingType public enum EnumLoadingType { /// /// 两个圆 /// DoubleRound, /// /// 一个圆 /// SingleRound, /// /// 仿Win10加载条 /// Win10, /// /// 仿Android加载条 /// Android, /// /// 仿苹果加载条 /// Apple, Cogs, Normal, /// /// 线条动画 /// Lines, /// /// 方格动画 /// Grids, /// /// 中心旋转动画 /// Rotate, /// /// 版块加载 /// Block, /// /// 自定义图标动画 /// PathAnimation } #endregion /// /// 方向 /// #region EnumPlacement public enum EnumPlacement { /// /// 左上 /// LeftTop, /// /// 左中 /// LeftCenter, /// /// 左下 /// LeftBottom, /// /// 右上 /// RightTop, /// /// 右中 /// RightCenter, /// /// 右下 /// RightBottom, /// /// 上左 /// TopLeft, /// /// 上中 /// TopCenter, /// /// 上右 /// TopRight, /// /// 下左 /// BottomLeft, /// /// 下中 /// BottomCenter, /// /// 下右 /// BottomRight, } #endregion /// /// 动画容器类型 /// public enum TransitionMode { Right2Left, Left2Right, Bottom2Top, Top2Bottom, Right2LeftWithFade, Left2RightWithFade, Bottom2TopWithFade, Top2BottomWithFade, Fade, Custom } /// /// 联系人类型 /// public enum ContactType { SerialNumber, Single, Group, AddUser, CutUser } /// /// 进度条类型 /// public enum ProgressBarType { Line, Round } /// /// XAML显示类型 /// public enum Scope { None, This, ThisAndChildren } /// /// 加减数字控件 /// public enum EnumCompare { /// /// 小于 /// Less, /// /// 等于 /// Equal, /// /// 大于 /// Large, None, } }