2020-12-27 09:02:46 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace ryControls.Interface
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 列表项
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public interface IItemInfo
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 图标
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
Image Image { get; set; }
|
2020-12-29 10:29:34 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 角标图片序号,为-1表示无角标
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
int BadgeImageIndex { get; set; }
|
2020-12-27 09:02:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|