------ #### ryControlsV4 V3.0.2107.0101 - *.[新增]新增Sheng.Winform.Controls部分控件。 #### RyWeb V3.0.2107.0101 - *.[新增]QuickWeb新增引用页设置。 #### MyDbV4 V3.0.2107.0101 - *.[新增]支持忽略大小写的替换功能。
28 lines
714 B
C#
28 lines
714 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Sheng.Winform.Controls
|
|
{
|
|
public class ShengListViewDescriptiveMembers : IShengListViewExtendMember
|
|
{
|
|
public const string DescriptioinMember = "Description";
|
|
public string Description { get; set; }
|
|
|
|
#region ISEListViewExtendMember 成员
|
|
|
|
public Dictionary<string, string> GetExtendMembers()
|
|
{
|
|
Dictionary<string, string> members = new Dictionary<string, string>();
|
|
|
|
if (String.IsNullOrEmpty(Description) == false)
|
|
members.Add(DescriptioinMember, Description);
|
|
|
|
return members;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|