------ #### ryControlsV4 V3.0.2107.0101 - *.[新增]新增Sheng.Winform.Controls部分控件。 #### RyWeb V3.0.2107.0101 - *.[新增]QuickWeb新增引用页设置。 #### MyDbV4 V3.0.2107.0101 - *.[新增]支持忽略大小写的替换功能。
30 lines
634 B
C#
30 lines
634 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Sheng.Winform.Controls
|
|
{
|
|
/// <summary>
|
|
/// 测试坐标
|
|
/// </summary>
|
|
public class ShengListViewHitInfo
|
|
{
|
|
/// <summary>
|
|
/// 项的坐标
|
|
/// </summary>
|
|
public int ItemIndex { get; private set; }
|
|
|
|
/// <summary>
|
|
/// 是否点击了项
|
|
/// </summary>
|
|
public bool ItemHit { get; private set; }
|
|
|
|
public ShengListViewHitInfo(int itemIndex,bool itemHit)
|
|
{
|
|
ItemIndex = itemIndex;
|
|
ItemHit = itemHit;
|
|
}
|
|
}
|
|
}
|