📄 groupitem.cs
字号:
using System;
using System.ComponentModel;
namespace IssueVision
{
// The ExpandableList control contains a collection of GroupItem objects.
// Each object specifies the group title and filter that determines
// which rows are displayed in the group.
[TypeConverterAttribute(typeof(GroupItemConverter))]
public class GroupItem
{
// Internal members.
private string m_groupTitle;
private string m_rowFilter;
public string GroupTitle
{
get
{
return m_groupTitle;
}
set
{
m_groupTitle = value;
}
}
public string RowFilter
{
get
{
return m_rowFilter;
}
set
{
m_rowFilter = value;
}
}
public GroupItem()
{
}
public GroupItem(string title, string filter)
{
m_groupTitle = title;
m_rowFilter = filter;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -