24 lines
505 B
C#
24 lines
505 B
C#
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; }
|
|
/// <summary>
|
|
/// 角标图片序号,为-1表示无角标
|
|
/// </summary>
|
|
int BadgeImageIndex { get; set; }
|
|
}
|
|
}
|